• Excel 2007 – Separating names formula

    Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Excel 2007 – Separating names formula

    Author
    Topic
    #461756

    I have don Adams in cell A3. I need a formula in cell B3 that will look in cell A3 and show me only Don. I need a formula in cell C3 that will look in cell A3 and show me only Adams.

    Thanks in advance.

    Viewing 1 reply thread
    Author
    Replies
    • #1172776

      In B3
      =LEFT(A3,FIND(” “,A3)-1)

      In C3:
      =RIGHT(A3,LEN(A3)-FIND(” “,A3))

      This presumes you will always have things of the form:
      First name then 1 space then the last name…

      Steve

    • #1172781

      I have don Adams in cell A3. I need a formula in cell B3 show me Don. and cell C3 show me Adams.

      Another option :

      B3 =MID(A3,1,FIND(” “,A3)-1)

      C3 =MID(A3,FIND(” “,A3)+1,99)

      Or

      B3 =REPLACE(A3,FIND(” “,A3),99,””)

      C3 =REPLACE(A3,1,FIND(” “,A3),””)

      Regards
      Bosco

    Viewing 1 reply thread
    Reply To: Excel 2007 – Separating names formula

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: