I am in need of some help please. I have found multiple vba codes that can help with pulling certain characters in a cell, but the trouble I am having is that a single cell has multiple paragraphs where I need specific information parsed out and placed into its own rows with the rest of the row data copied over from the cell it needs to be parsed from. Below is an example of a cells data.
ABC:123456
This is where the paragraph starts, each paragraph is different, then at the end it include something like this.
Updates: Notes Aligned: ABCD-123
Updates: Notes Old: ABC-0125
(Note: some paragraphs are separated by multiple tabbing spaces)
ABC:789012
This is where the paragraph starts, each paragraph is different, then at the end it include something like this.
Updates: Notes Aligned: ABCD-123
Updates: Notes Old: ABC-0125
Update: above each paragraph there is something like ABC:123456 which is all I need to parse out to it’s own rows, the numbers after the “:“ are all different as well. I don’t need the text/references below it, just the 3 letters, the colon character, and the number that follows (ABC:######). There are multiple cells that have anywhere from 2 to 10 of these paragraphs. Reason I prefer to use vba code so when the data is uploaded, excel is automatically updated to parse the data. Please help?
I have tried multiple vba codes, formulas, and power query but it’s time consuming trying to get just the top row of the paragraphs. Especially when my data is at 10,000 plus.
Data: Example data

You can use Regex.
This will get the value starting with ABC: and then six digits