Changing the order of a name in various cells

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

Guest

I have a column with over 400 rows of names that most contain names reading last name first then a comma then a persons first name. Such as Sullivan, Mike. How can I change the order to read first name then last name without the comma? Such as Mike Sullivan.

Thank you for looking.
 
Hi

With entry in A1:
=RIGHT(A1,LEN(A1)-FIND(",",A1)-1) & " " & LEFT(A1,FIND(",",A1)-1)


--
Arvi Laanemets
(Don't use my reply address - it's spam-trap)


happydude said:
I have a column with over 400 rows of names that most contain names
reading last name first then a comma then a persons first name. Such as
Sullivan, Mike. How can I change the order to read first name then last
name without the comma? Such as Mike Sullivan.
 

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