+ Reply to Thread
Results 1 to 3 of 3

Excel 2007 : Reversing first+last name & removing space

  1. #1
    Registered User
    Join Date
    05-21-2010
    Location
    Montreal, Canada
    MS-Off Ver
    Excel 2003
    Posts
    4

    Reversing first+last name & removing space

    Hi, I have this big excel project for school. I need to find an expression that reverses the first and last name as well as removing the space in names like Mac Leod. First instance,
    in cell A1 i have Peter Mac Leod, and i want Macleod Peter in cell B1. Can anybody help me out?

    I did find a formula to switch first and last name =TRIM(REPLACE(A1&" "&LEFT(A1,FIND(" ",A1)),1,FIND(" ",A1)," ")))
    but still trying to figure out how to remove the space between ''Mac'' and ''Leod''?

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Reversing first+last name & removing space

    Try

    =SUBSTITUTE(MID(A1,FIND(" ",A1)+1,99)," ","")&" "&LEFT(A1,FIND(" ",A1&" "))

    But be aware that the formula does not distinguish between a name part that belongs to the last name and a name part that belongs to the first name. So, if you have two first names, you'll end up with funny things.

    Peter Mac Leod MacLeod Peter
    Sally Ann Miller AnnMiller Sally

    Name parsing is complex, and very often, a single example name is not representative of the whole scope.

  3. #3
    Registered User
    Join Date
    05-21-2010
    Location
    Montreal, Canada
    MS-Off Ver
    Excel 2003
    Posts
    4

    Smile Re: Reversing first+last name & removing space

    Yeah that was a tough one! It works out great, so thank you very much!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1