+ Reply to Thread
Results 1 to 3 of 3

Working with Strings

Hybrid View

  1. #1
    joe
    Guest

    Working with Strings

    I have a column which has names. I would like to split it by Last, First and
    Middle Names. Can some one help me do it.

  2. #2
    Registered User
    Join Date
    03-07-2006
    Posts
    34

    text to columns

    You can use Text to Columns: Data>Text to Columns.

    Assuming there is a space between names, choose "delimited" and "space" when running the wizard.

    You will probably have to "clean up" a bit with a few names that have "Jr.", etc.

    Hope it helped!


    Quote Originally Posted by joe
    I have a column which has names. I would like to split it by Last, First and
    Middle Names. Can some one help me do it.

  3. #3
    Sloth
    Guest

    RE: Working with Strings

    Depends on the format of the names. Here are two examples that might help
    you. If you need something else, then list how the names are inputted.

    John Joe Smith
    - Can be seperated with Date->Text To Columns. Select Delimited, and then
    select a space as the delimiter.
    - You can also use helper columns with the following formulas
    =LEFT(A1,FIND(" ",A1)-1)
    =MID(A1,FIND(" ",A1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1)-1)
    =RIGHT(A1,LEN(A1)-FIND(" ",A1,1+FIND(" ",A1)))

    Smith, John Joe
    - Can be seperated with the following formulas
    =LEFT(A1,FIND(",",A1)-1)
    =MID(A1,FIND(" ",A1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1)-1)
    =RIGHT(A1,LEN(A1)-FIND(" ",A1,1+FIND(" ",A1)))

    If you use the formulas, you can copy and paste special selecting values.
    This will replace the formulas with the result of the formulas.

    "joe" wrote:

    > I have a column which has names. I would like to split it by Last, First and
    > Middle Names. Can some one help me do it.


+ 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