redbunny78
Programmer
I have an excel spreadsheet with several values that have been stored in one field. How can I best split them into other columns?
This is what it currently looks like:
A B C
Salutation Name Designation
Dr. William R. Hendee
Rose Y. Byland MD.
Ms. Cynthia Allen
I need it to look like this:
A B C
Salutation Name Designation
Dr. William R. Hendee MD.
Dr. Rose Y. Byland MD.
Ms. Cynthia Allen
So, if it has a Dr. designated in column A - place an MD in column C. If there is an MD in column C, then place a Dr. in column A. And if there is a salutation(Ms., Mrs., Miss) in column B, place it in column A. If there isn't one, then leave it blank.
This is what it currently looks like:
A B C
Salutation Name Designation
Dr. William R. Hendee
Rose Y. Byland MD.
Ms. Cynthia Allen
I need it to look like this:
A B C
Salutation Name Designation
Dr. William R. Hendee MD.
Dr. Rose Y. Byland MD.
Ms. Cynthia Allen
So, if it has a Dr. designated in column A - place an MD in column C. If there is an MD in column C, then place a Dr. in column A. And if there is a salutation(Ms., Mrs., Miss) in column B, place it in column A. If there isn't one, then leave it blank.