K
Kagsy
Dear All
I have been given a spreadsheet that has the full name of people in one
cell, e.g. Kagsy Malone. A combination of what functions would enable me to
parse the cell into the two component parts Kagsy & Malone.
In Access I could use:
[Names] = "Kagsy Malone" Kagsy
FirstName: Left([Names],InStr(1,[Names]," ")-1)
or
[Names] = "Kagsy Malone" Malone
LastName: Right(Trim([Names]),Len(Trim([Names]))-InStr(1,[Names]," "))
Thanks for the help...
Kagsy
I have been given a spreadsheet that has the full name of people in one
cell, e.g. Kagsy Malone. A combination of what functions would enable me to
parse the cell into the two component parts Kagsy & Malone.
In Access I could use:
[Names] = "Kagsy Malone" Kagsy
FirstName: Left([Names],InStr(1,[Names]," ")-1)
or
[Names] = "Kagsy Malone" Malone
LastName: Right(Trim([Names]),Len(Trim([Names]))-InStr(1,[Names]," "))
Thanks for the help...
Kagsy