I download a list of instructors, and find that the 'Class Instructor' field stores up to 8 name values in a single field. I now need to report on each trainer.
Ex: cell
Frost, Robert
Farmer, George
Heston, Bruce
Brando, Moonbeam
etc., and it's all in a single cell.
I find that applying TRIM leaves spaces between word, and formats the data to look flat like this:
Frost, RobertFarmer,GeorgeHeston, BruceBrando, Moonbeam.
I'd thought of writing a routine to step through the data, one character at a time, and figure out how to embed a comma, hyphen, or some character based on the ascii value of a capital letter (ascii "A"=65, "Z"=90),
but that's when I decided to get an independent opinion.
I've looked at the CLEAN() and Substitute() functions, but they don't seem suited for this.
It just sounds like there must be a better way.
If the entries were formatted with a character denoting the end of a name, I'd be ok, but this is proving a bit difficult.
Thanks for any comments.
Ex: cell
Frost, Robert
Farmer, George
Heston, Bruce
Brando, Moonbeam
etc., and it's all in a single cell.
I find that applying TRIM leaves spaces between word, and formats the data to look flat like this:
Frost, RobertFarmer,GeorgeHeston, BruceBrando, Moonbeam.
I'd thought of writing a routine to step through the data, one character at a time, and figure out how to embed a comma, hyphen, or some character based on the ascii value of a capital letter (ascii "A"=65, "Z"=90),
but that's when I decided to get an independent opinion.
I've looked at the CLEAN() and Substitute() functions, but they don't seem suited for this.
It just sounds like there must be a better way.
If the entries were formatted with a character denoting the end of a name, I'd be ok, but this is proving a bit difficult.
Thanks for any comments.