jestrada101
Technical User
- Mar 28, 2003
- 332
How can I split the following into separate columns?
COLUMN A
-----------
DOE, JOHN A
DOE, JANE
I'd like it like this
COLUMN B COLUMN C COLUMN D
-------- -------- ------
DOE JOHN A
DOE JANE
I've been using this for the firstname, but it keeps the last initial.
=RIGHT(A1,LEN(A1)-FIND(",",A1))
Thanks for any help.
JE
COLUMN A
-----------
DOE, JOHN A
DOE, JANE
I'd like it like this
COLUMN B COLUMN C COLUMN D
-------- -------- ------
DOE JOHN A
DOE JANE
I've been using this for the firstname, but it keeps the last initial.
=RIGHT(A1,LEN(A1)-FIND(",",A1))
Thanks for any help.
JE