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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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]
 
Last Name:

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

First Name:

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

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top