Split names in Excel: separate first and last name into different columns (2023)

The tutorial shows how to separate first and last name in Excel with formulas or Text to Columns, and how to quickly split a column of names in various formats to first, last and middle name, salutations and suffixes.

It is a very common situation in Excel that your worksheet contains a column of full names, and you want to split first and last name into separate columns. The task can be accomplished in a few different ways - by using the Text to Columns feature, formulas, and Split Names tool. Below you will find full details on each technique.

  • How to split full names with Text to Columns feature
  • How to split names in Excel with formulas
    • Split first and last name by space
    • Separate first and last name by comma
    • Split first, last and middle name
  • Separate name in Excel Flash Fill
  • Split Names tool - fastest way to separate names in Excel

How to split names in Excel with Text to Columns

In situations when you have a column of names of the same pattern, for example only first and last name, or first, middle and last name, the easiest way to split them into separate columns is this:

  1. Select the column of full names that you'd like to separate.
  2. Head to the Data tab > Data Tools group and click Text to Columns.Split names in Excel: separate first and last name into different columns (1)
  3. On the first step of the Convert Text to Columns Wizard, select the Delimited option and click Next.Split names in Excel: separate first and last name into different columns (2)
  4. On the next step, select one or more delimiters and click Next.

    In our case, different parts of names are separated with spaces, so we choose this delimiter. The Data preview section shows that all of our names are parsed just fine.

    Split names in Excel: separate first and last name into different columns (3)

    Tip. If you are dealing with names separated with a comma and space like Anderson, Ronnie, then check the Comma and Space boxes under Delimiters, and select the Treat consecutive delimiters as one checkbox (usually selected by default).

  5. On the last step, you select the data format and destination, and click Finish.

    The default General format works nice in most cases. As the Destination, specify the topmost cell in the column where you want to output the results (please keep in mind that this will overwrite any existing data, so be sure to choose an empty column).

    Split names in Excel: separate first and last name into different columns (4)

Done! The first, middle, and last name are divided into separate columns:

Split names in Excel: separate first and last name into different columns (5)

Separate first and last name in Excel with formulas

As you have just seen, the Text to Columns feature is quick and easy. However, if you plan to make any changes to the original names and are looking for a dynamic solution that will update automatically, you'd better divide names with formulas.

How to split first and last name from full name with space

These formulas cover the most typical scenario when you have the first name and last name in one column separated by a single space character.

Formula to get first name

The first name can be easily extracted with this generic formula:

(Video) Excel Split Names Tutorial

LEFT(cell, SEARCH(" ", cell) - 1)

You use the SEARCH or FIND function to get the position of the space character (" ") in a cell, from which you subtract 1 to exclude the space itself. This number is supplied to the LEFT function as the number of characters to be extracted, starting on the left side of the string.

Formula to get last name

The generic formula to extract a surname is this:

RIGHT(cell, LEN(cell) - SEARCH(" ", cell))

In this formula, you also use the SEARCH function to find the position of the space char, subtract that number from the total length of the string (returned by LEN), and get the RIGHT function to extract that many characters from the right side of the string.

With the full name in cell A2, the formulas go as follows:

Get the first name:

=LEFT(A2,SEARCH(" ",A2)-1)

Get the last name:

=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,1))

You enter the formulas in cells B2 and C2, respectively, and drag the fill handle to copy the formulas down the columns. The result will look something similar to this:

(Video) How To Split Names Into First And Last Name Columns

Split names in Excel: separate first and last name into different columns (6)

If some of the original names contain a middle name or middle initial, you'd need a bit more tricky formula to extract the last name:

=RIGHT(A2, LEN(A2) - SEARCH("#", SUBSTITUTE(A2," ", "#", LEN(A2) - LEN(SUBSTITUTE(A2, " ", "")))))

Here is a high-level explanation of the formula's logic: you replace the last space in the name with a hash sign (#) or any other character that do not appear in any name and work out the position of that char. After that, you subtract the above number from the total string length to get the length of the last name, and have the RIGHT function extract that many characters.

So, here's how you can separate the first name and surname in Excel when some of the original names include a middle name:

Split names in Excel: separate first and last name into different columns (7)

How to separate first and last name from name with comma

If you have a column of names in the Last name, First name format, you can have them split into separate columns by using the following formulas.

Formula to extract first name

RIGHT(cell, LEN(cell) - SEARCH(" ", cell))

Like in the above example, you use the SEARCH function to determine the position of a space character, and then subtract it from the total string length to get the length of the first name. This number goes directly to the num_chars argument of the RIGHT function indicating how many characters to extract from the end of the string.

Formula to extract last name

LEFT(cell, SEARCH(" ", cell) - 2)

To get a surname, you use the LEFT SEARCH combination discussed in the previous example with the difference that you subtract 2 instead of 1 to account for two extra characters, a comma and a space.

With the full name in cell A2, the formulas take the following shape:

Get the first name:

(Video) SPLIT NAMES in Excel | Separate First, Middle and Last Name

=RIGHT(A2, LEN(A2) - SEARCH(" ", A2))

Get the last name:

=LEFT(A2, SEARCH(" ", A2) - 2)

The below screenshot shows the results:

Split names in Excel: separate first and last name into different columns (8)

How to split full name to first, last, and middle name

Splitting names that include a middle name or middle initial requires slightly different approaches, depending on the name format.

If your names are in the First name Middle name Last name format, the below formulas will work a treat:

ABCD
1Full nameFirst nameMiddle NameLast name
2FirstName MiddleName LastName=LEFT(A2,SEARCH("", A2)-1)=MID(A2, SEARCH("", A2) + 1, SEARCH(" ", A2, SEARCH("", A2)+1) - SEARCH("", A2)-1)=RIGHT(A2,LEN(A2) - SEARCH("", A2, SEARCH("", A2,1)+1))
Result:David Mark WhiteDavidMarkWhite

To get the first name, you use the already familiar LEFT SEARCH formula.

To get the last name, determine the position of the 2nd space by using nested SEARCH functions, subtract the position from the total string length, and get the length of the last name as the result. Then, you supply the above number to the RIGHT function instructing it to pull that number of characters from the end of the string.

To extract the middle name, you need to know the position of both spaces in the name. To determine the position of the first space, use a simple SEARCH(" ",A2) function, to which you add 1 to start the extraction with the next character. This number goes to the start_num argument of the MID function. To work out the length of the middle name, you subtract the position of the 1st space from the position of the 2nd space, subtract 1 from the result to get rid of a trailing space, and put this number in the num_chars argument of MID, telling it how many characters to extract.

Split names in Excel: separate first and last name into different columns (9)

And here are the formulas to separate names of the Last name, First name Middle name type:

ABCD
1Full nameFirst nameMiddle nameLast Name
2LastName, FirstName MiddleName=MID(A2, SEARCH("",A2) + 1, SEARCH("", A2, SEARCH("", A2) + 1) - SEARCH("", A2) -1)=RIGHT(A2, LEN(A2) - SEARCH("", A2, SEARCH("", A2, 1)+1))=LEFT(A2, SEARCH("",A2,1)-2)
Result:White, David MarkDavidMarkWhite

A similar approach can be used to split names with suffixes:

(Video) How to Separate Names in Excel

ABCD
1Full nameFirst nameLast nameSuffix
2FirstName LastName, Suffix=LEFT(A2, SEARCH("",A2)-1)=MID(A2, SEARCH("",A2) + 1, SEARCH(",",A2) - SEARCH("",A2)-1)=RIGHT(A2, LEN(A2) - SEARCH("", A2, SEARCH("",A2)+1))
Result:Robert Furlan, Jr.RobertFurlanJr.

That's how you can split names in Excel by using different combinations of functions. To better understand and probably reverse-engineer the formulas, you are welcome to download our sample workbook to Separate Names in Excel.

Tip. In Excel 365, you can make use of the TEXTSPLIT function to separate names by any delimiter that you specify.

Separate name in Excel 2013, 2016 and 2019 with Flash Fill

Everyone knows that Excel's Flash Fill can quickly fill data of a specific pattern. But did you know that it can also split data? Here's how:

  1. Add a new column next to the column with the original names and type the name part that you want to extract in the first cell (the first name in this example).
  2. Start typing the first name in the second cell. If Excel senses a pattern (in most cases it does), it will populate the first names in all other cells automatically.Split names in Excel: separate first and last name into different columns (10)
  3. All you have to do now is to press the Enter key :)

Tip. Usually the Flash Fill feature is enabled by default. If it does not work in your Excel, click the Flash Fill button on the Data tab > Data tools group. If it still doesn't work, then go to File > Options, click Advanced, and make sure the Automatically Flash Fill box is selected under Editing options.

Plain or tricky, Text to Columns, Flash Fill and formulas work well only for homogeneous datasets where all names are of the same type. If you are dealing with different name formats, the above methods will mess up your worksheets by putting some name parts in wrong columns or returning errors, for example:

Split names in Excel: separate first and last name into different columns (11)

In such situations, you can commit the work to our Split Names tool, which perfectly recognizes multi-part names, over 80 salutations and about 30 different suffixes, and works smoothly on all version of Excel 2016 to Excel 2007.

With our Ultimate Suite installed in your Excel, a column of names in various formats can be split in 2 easy steps:

  1. Select any cell containing a name you want to separate and click the Split Names icon on the Ablebits Data tab > Text group.Split names in Excel: separate first and last name into different columns (12)
  2. Select the desired names parts (all of them in our case) at click Split.Split names in Excel: separate first and last name into different columns (13)

Done! Different parts of names are spread out across several columns exactly as they should, and the column headers are added automatically for your convenience. No formulas, no fiddling with commas and spaces, no pain at all.

Split names in Excel: separate first and last name into different columns (14)

If you are curious to try the Split Names tool in your own worksheets, feel free to download an evaluation version of the Ultimate Suite for Excel.

Available downloads

Formulas to split names in Excel (.xlsx file)
Ultimate Suite 14-day fully-functional version (.exe file)

You may also be interested in

  • How to split text string in Excel by comma, space, character or mask
  • How to split cells in Excel
  • How to unmerge cells in Excel
  • How to split date and time in Excel

Videos

1. How to Split full Name to First and Last Name in Excel
(pc shastra)
2. Split data into different columns in Microsoft Excel
(Microsoft 365)
3. How To Split Text Into Multiple Columns Using Text to Column In Excel
(The Organic Chemistry Tutor)
4. No Formula-Separate First Name & Last Name in MS Excel
(MJ Tube)
5. Separate Names into Different Columns - Text to Columns in Excel
(Computergaga)
6. How to Split Full Names To First And Last Names By Comma
(Excel 10 tutorial)
Top Articles
Latest Posts
Article information

Author: Fr. Dewey Fisher

Last Updated: 07/02/2023

Views: 6254

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fr. Dewey Fisher

Birthday: 1993-03-26

Address: 917 Hyun Views, Rogahnmouth, KY 91013-8827

Phone: +5938540192553

Job: Administration Developer

Hobby: Embroidery, Horseback riding, Juggling, Urban exploration, Skiing, Cycling, Handball

Introduction: My name is Fr. Dewey Fisher, I am a powerful, open, faithful, combative, spotless, faithful, fair person who loves writing and wants to share my knowledge and understanding with you.