|  

» Separating First and Last Names

Problem:

Separating the full names in column A into first and last names in columns B and C.

Solution:

To retrieve the first name use the LEFT and FIND functions as shown in the following formula:
=LEFT(A2,FIND(" ",A2))
To retrieve the last name use the RIGHT, LEN, and FIND functions as shown in the following formula:
=RIGHT(A2,LEN(A2)-FIND(" ",A2)) Screenshot // Separating First and Last Names
Separating First and Last Names

Rate This Tip
12 34 5
Rating: 3.51     Views: 39169
No comments have been submitted.
Name
Comment Title
Comments