Convert cell from last name first to first name first

  • Thread starter Thread starter Guest
  • Start date Start date
I have a list of names:
Smith, Mary J.
I need to convert to:
Mary J. Smith in the same cell.

Does that make sense?

Thanks,
Diane
 
You cannot convert them in the "same cell" without VB and that is probably
not necessary.

Use the formula on Chip's site in a helper column and then Copy/Paste
Special the converted names back over the original data.
 
One way:

=TRIM(MID(A1,FIND(",",A1)+1,255)&" "&LEFT(A1,FIND(",",A1)-1))
 

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