+ Reply to Thread
Results 1 to 7 of 7

Splitting Forenames and Surname

  1. #1
    Forum Contributor
    Join Date
    09-18-2008
    Location
    Scotland
    Posts
    156

    Splitting Forenames and Surname

    Morning, I have an extensive list of names that I need to split into forenames and surnames.
    I have attached a sample spreadsheet.
    I have tried to use the text - to - columns function but this splits each name into a separate cell which is not what I am looking for.

    To clarify I want
    Mr John Paul Murphy to become
    Mr
    John Paul
    Murphy
    in the same row

    Any ideas?
    Thanks
    Attached Files Attached Files
    Last edited by guerillaexcel; 07-06-2011 at 06:18 AM.

  2. #2
    Forum Contributor
    Join Date
    09-18-2008
    Location
    Scotland
    Posts
    156

    Re: Splitting Forenames and Surname

    Or, if i can just extract the surname then that would be helpful? Possibly a formula with =RIGHT?

  3. #3
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Splitting Forenames and Surname

    Try these:

    In B1 copied down: =LEFT(A1,SEARCH(" ",A1)-1)
    In C1 copied down: =TRIM(MID(A1,SEARCH(" ",A1),LEN(A1)-LEN(B1)-LEN(D1)))
    In D1 copied down: =TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",50)),50))

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  4. #4
    Forum Contributor
    Join Date
    09-18-2008
    Location
    Scotland
    Posts
    156

    Re: Splitting Forenames and Surname

    Hi Dom, that works perfectly for all names with a title, apologies for scope creep here, but how do i handle those names that don't have a mr or mrs in their name?
    e.g.
    John P Butler
    Mary Anne Lloyd-Evan
    Last edited by guerillaexcel; 07-04-2011 at 06:09 AM. Reason: adding examples

  5. #5
    Forum Contributor
    Join Date
    09-18-2008
    Location
    Scotland
    Posts
    156

    Re: Splitting Forenames and Surname

    Bump. Anyone able to help?

  6. #6
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Splitting Forenames and Surname

    Try:

    In B1: =IF(ISNUMBER(MATCH(LEFT(A1,SEARCH(" ",A1)-1),{"Mr","Mrs","Miss","Ms"},0)),LEFT(A1,SEARCH(" ",A1)-1),"")
    In C1: =TRIM(MID(A1,LEN(B1)+1,LEN(A1)-LEN(B1)-LEN(D1)))
    In D1: =TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",50)),50))

    Dom

  7. #7
    Forum Contributor
    Join Date
    09-18-2008
    Location
    Scotland
    Posts
    156

    Re: Splitting Forenames and Surname

    You are a gentleman and scholar Dom! That's fantastic, thanks 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