How do I transpose Comma Separated Data in each cell and delete t.

R

randy

I need to switch a names list in each cell:
[LAST_NAME, FIRST_NAME]
to
[FIRST_NAME LAST_NAME] (no comma),
preferably into two cells:
[FIRST_NAME] [LAST_NAME]
 
J

Jason Morin

Last Name:

=LEFT(A1,FIND(",",A1)-1)

First Name:

=MID(A1,FIND(",",A1)+2,999)

HTH
Jason
Atlanta, GA
 
C

CyberTaz

You may be able to just select the column of names and use Data>Text to
Columns. Specify Comma Delimited in first & second step |:>)
 
Top