All right . . .
I have been bashing my head against a wall for two days now because I got interested in solving this issue. I have a cell that contains thousands of names in the following format:
Smith MD, Bob; Savage DDS, Fred; Doe MD, Jane; . . . et cetera
I have already fixed the issue for my fellow associate (used text to column followed by a transpose to get the names into individual rows).
I know how to write the VB for this and I fixed the problem using the text to column method, so that leads me to the formula solution.
How can it be done . . . it's a challenge and I would like to solve this once and for all. As of now I have this formula:
=MID(A$1,ROW(),SEARCH(";",$A$1,1)-1)
This will return the first name and copy down, but the issue is the start value of one, this obviously needs to be the last semicolon "used" per se.
Any suggestions would be greatly appreciated
I have been bashing my head against a wall for two days now because I got interested in solving this issue. I have a cell that contains thousands of names in the following format:
Smith MD, Bob; Savage DDS, Fred; Doe MD, Jane; . . . et cetera
I have already fixed the issue for my fellow associate (used text to column followed by a transpose to get the names into individual rows).
I know how to write the VB for this and I fixed the problem using the text to column method, so that leads me to the formula solution.
How can it be done . . . it's a challenge and I would like to solve this once and for all. As of now I have this formula:
=MID(A$1,ROW(),SEARCH(";",$A$1,1)-1)
This will return the first name and copy down, but the issue is the start value of one, this obviously needs to be the last semicolon "used" per se.
Any suggestions would be greatly appreciated
Last edited: