Reverse Name Order

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

Guest

I have names in one column in Excel and they are typed last name comma first
name. I would like to reverse this so the names were first name last name.
Is there a way to do that? Seems like I've done that before, can't remember
how.
 
One way,
With Smith,John in A1
=RIGHT(A1,FIND(",",A1)-2)&LEFT(A1,FIND(",",A1)-1)
will return JohnSmith
=RIGHT(A1,FIND(",",A1)-2)&" "&LEFT(A1,FIND(",",A1)-1)
will return John Smith,
Regards
 
Thank you, but I was sure there was some little pull down thing that I'd done
before. I will try this though. Thanks!
 
OK I tried this but where do I put that formula?

Alan said:
One way,
With Smith,John in A1
=RIGHT(A1,FIND(",",A1)-2)&LEFT(A1,FIND(",",A1)-1)
will return JohnSmith
=RIGHT(A1,FIND(",",A1)-2)&" "&LEFT(A1,FIND(",",A1)-1)
will return John Smith,
Regards
 
I don't know what I'm doing wrong but I cannot make this formula work. I get
an error message asking if I want the formula fixed. When I answer yes, I
get #VALUE in the cell. I've even copied the formula from the post.
 
If this is a one off you could use Data, Text to columns
This would split your names into a first name column and a last nam
column which you could then re-combine the other way around with
+a1&+"," &+b
 
I found a formula that does work - the one =MID. Now what's the formula to
reverse it if you have names first name last name and want to change it to
last name, first name?
 
To turn "John Smith" into "Smith, John" use

=MID(A1,FIND(" ",A1)+1,255)&", "&LEFT(A1,FIND(" ",A1)
 
Cheri:

Just a little thought a propos your last question
:
how can you tell for certain whether a name is first, last and no
last, first?

Two people John, Elton and Elton, John. Or is it one person in tw
directions?

Al
 

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