P
Presto
I have imported data from an Excel spreadsheet from another department
(They are uncooperative and wont change their data structure...)
Three of their fields contain name data formatted as lastname / lastname
(this is a buddy list):
Example:
Team1 Team2 Team3
Smith/Jones Doe/Johnson Green/Smith
I need to extract the names and separate them so I can put it in a new
table.
I cant work with the data in this format. I know how to use Left() or
Right()
to get a certain string, but I don't know how to get all data before-and not
including the / , and anything after the / . This has to be set up to be
done
automatically since there are over 500 records to edit and no time to do it
manually.
I want to end up with two columns(for each team) and the names split up:
Team1a Team1b
Smith Jones
(They are uncooperative and wont change their data structure...)
Three of their fields contain name data formatted as lastname / lastname
(this is a buddy list):
Example:
Team1 Team2 Team3
Smith/Jones Doe/Johnson Green/Smith
I need to extract the names and separate them so I can put it in a new
table.
I cant work with the data in this format. I know how to use Left() or
Right()
to get a certain string, but I don't know how to get all data before-and not
including the / , and anything after the / . This has to be set up to be
done
automatically since there are over 500 records to edit and no time to do it
manually.
I want to end up with two columns(for each team) and the names split up:
Team1a Team1b
Smith Jones