How to separate first and last names in Excel

Learn how to separate names in Excel (first, last, or middle) using regular Excel formulas and advanced functions.

When splitting first and last names in Excel, you can separate names in multiple ways. Through simple formulas like LEFT, RIGHT, MID, FIND, or SEARCH, you can automate the splitting of names, saving time and resources.

Furthermore, you can write custom functions using VBA. These UDFs can manage more advanced tasks and support data cleansing projects. User-defined functions handle exceptions and unique name formats, ensuring effective string manipulations. This article provides a step-by-step guide on separating first and last names using built-in Excel formulas and custom functions.

As usual, you can download the practice file that contains all examples and source code. You can save time and reduce the learning curve using the training material.

Table of contents:

  1. Why is it important to split first and last names in Excel?
  2. How to separate names with the Text to Columns feature
  3. Separating First and Last Names: Dealing with hyphens and suffixes
  4. Separate first names using formulas
  5. Get last names from the name
  6. Separate middle names from full name
  7. Conclusion and Downloads

Why is it important to split first and last names in Excel?

Splitting first and last names is key in data handling for easy analysis and sorting. Separating first and last names in different columns in Excel is not just about making your list look straight. It helps make your information clear and useful and your work more efficient.

How to separate names with the Text to Columns feature

Text to columns is a great built-in feature in Excel to split names. Let us see the step-by-step guide to extract and separate names in seconds.

Here are the steps to separate names in Excel:

  1. Select the columns that you want to split.
  2. On the ribbon, click the “Data” tab.
  3. Choose the “Text to Columns” command.
  4. Select the “Delimited” option.
  5. Choose the delimiter – for example, a space character or a semicolon.
  6. Click “Next.”
  7. Specify the data format.
  8. Select the location of the output where you want to extract the separated data.
  9. Click “Finish.”
  10. Text to Columns separates the first and last names into different cells.

The result looks like the table below:

text-to-columns-separate-names

Note: Clean your data before using this feature. The next chapter will provide effective methods to remove unwanted characters. When the cell includes titles like “Ph.D.”, “Mrs”, or hyphens, you can choose the data cleansing method. If you are a beginner user, apply the “Find and Replace functions”. But we strongly recommend using the Excel CleanName function.

Separating First and Last Names: Dealing with hyphens and suffixes

It is essential to clean data before separating first and last names in Excel; consistent data is critical for analysis. However, it is not always an easy process when you are separating names in Excel. Instead of using the time-consuming “Search and Replace” function, apply a specific function to remove prefixes, initials, suffixes, and hyphens.

The CleanName function is a custom User Defined Function (UDF) in Excel, designed to sanitize a string (typically a name) by removing a set of unwanted characters. This function can be beneficial in data cleaning, mainly when your dataset contains unwanted characters, typographical errors, or symbols. These symbols can affect your formulas and analyses.

Syntax:

=CleanName(cell, unwanted_chars)

Arguments:

  • Rng” takes the cell reference containing the name you want to clean. The function reads the string from this cell.
  • unwanted_chars” is a comma-separated list of characters you want to remove from the cell containing first, middle, and last names. The function will parse this list and remove all instances of each symbol from the text.

In the example, the range B3:B6 contains names and some unnecessary characters.

Separating-First-and-Last-Names-Dealing-with-hyphens-and-suffixes

Explanation:

  1. The Split function divides the string into an array based on the delimiter.
  2. Next, substitute each unwanted character with an empty string.
  3. Finally, CleanName applies the Trim function to clean the string and extract the string without the unwanted characters and extra spaces.

The function performs an additional step before returning the final name. After the first cleanup phase, it can happen that multiple spaces might be left behind. The function uses smart logic and ensures that you have only a single space between the separated names.

Separate first names using formulas

There are several methods to split the first name; one of the most efficient formulas contains the LEFT and FIND functions. This section will explore the steps to use this formula through examples.

How to separate first names in Excel?

  1. Select cell D3.
  2. Type the formula: =LEFT(B3,FIND(” “,B3)-1).
  3. Press Enter.
  4. The formula returns the first name.

Generic formula to separate first names:

=LEFT(full_name,FIND(” “,full_name)-1)

In the example, the full name in cell B3 is “John W. Doe”. The goal is to extract and separate the first name into a single cell.

Formula:

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

Separate-first-names-using-formulas

The formula combines two functions: LEFT and FIND. LEFT extracts a certain number of characters from the left side of a text string. FIND locates a string within another string.

Get the first name using the TEXTLEFT function

Syntax:

=TEXTLEFT(cell, delimiter)

Arguments:

  • “txt” refers to the cell range (or the text) from which we want to extract content.
  • “delim” is the delimiter defined by a set of characters where the function should stop extracting the text.
  • “n” is an optional argument; the default value is 1. The argument defines the number of occurrences of the delimiter.
  • “IgnoreCase” is a boolean value. In the case of TRUE, the search for the delimiter is case-insensitive, which means “a” and “A” are considered the same.

In the example, you have a text in B3 and want to extract the first name. Use the formula:

=TEXTLEFT(B3,”_”,1)

Result:

textleft

Explanation of the parsing logic:

  1. The function first checks the input text length. If the length is greater than 0, the cell is not empty.
  2. Within the loop, the InStr function searches for the position of the delimiter in the text. InSrt starts the search after the end of the last found delimiter and checks the comparison type (case-sensitive or not).
  3. If no delimiter is found, the “delimiter” variable will be 0, and the loop will exit.
  4. If the “delimiter” is greater than 0 (delimiter was found), the LEFT function extracts characters from the left of the original text until the user-defined delimiter.

Case-sensitivity analysis: First, the function checks the IgnoreCase parameter. If the boolean value is TRUE, the functions use case-insensitive comparison. Otherwise, TEXTLEFT uses the built-in vbBinaryCompare function and applies a case-sensitive comparison.

This function is useful in name-splitting scenarios.

Get last names from the name

Let us see an example of how to get the last name from a full name using regular Excel text functions. Now you have the full name, “John_ W Doe”, in cell B3, and you want to separate the last name, “Doe”.

Formula to extract the last name from a name:

=RIGHT(cell,LEN(cell)-FIND("?",SUBSTITUTE(cell," ","?",LEN(cell)-LEN(SUBSTITUTE(cell," ","")))))
Get-last-names-from-the-name

Let’s break down the formula step-by-step to understand how it works:

  1. SUBSTITUTE(cell,” “,”?”, LEN(cell)-LEN(SUBSTITUTE(cell,” “,””))) finds the position of the last space in your text string.
  2. SUBSTITUTE(cell,” “,””) removes all spaces within your text.
  3. LEN(cell)-LEN(SUBSTITUTE(cell,” “,””)) calculates the number of spaces in the cell that contain names.
  4. SUBSTITUTE(cell,” “,”?”,number_of_spaces) replaces the last space in the text with a question mark (“?”)
  5. FIND(“?”,…) search the “?” position within the text. The formula replaces the “?” character and gets the position where the last word starts.
  6. LEN(cell) returns the total text length within the cell.
  7. RIGHT(cell, LEN(cell)-FIND(“?”,…)) extracts a certain number of characters from the right side of the text. It takes the total length of your text. Next, subtract the “?” position to calculate the number of characters it needs to extract. The result is the length of the last word. By subtracting the position of the “?” from the total length, you are left with just the position of the start of the last name to the end of the text, which is the length of the last word.
  8. RIGHT(cell, number_of_characters) extracts these characters, starting from the right; in other words, separate the last name.

So, if you had a cell that contained the text “John W. Doe”, the formula would replace the last space with a “?”. The result is “John_ W?Doe”. Next, find the position of “?”. Finally, extract “Doe” from the cell using the RIGHT function.

Separate last name using the GETLASTWORD function

The GETLASTWORD function is a small but versatile function for string manipulation.

How to separate the last name in Excel?

  1. Select cell D3
  2. Type the formula: =GETLASTWORD(D3)
  3. Press Enter.
  4. The formula returns with the last name.

In the example, we use the same string in cell B3. Instead of using neverending formulas, apply the GETLASTWORD function to get the last name in one step without struggling with nested formulas.

=GETLASTWORD(B3)
separate-last-name-getlastword

Separate middle names from full name

In the example, you want to get the middle name from the full name. Let us see how to write a formula that uses built-in Excel functions only.

How to extract a middle name from a full name in Excel?

  1. Select cell B6
  2. Type the formula: =TRIM(MID(B3,LEN(D3)+1,LEN(B3)-LEN(D3&F3)))
  3. Press Enter
  4. The formula returns the middle name from the full name.

Generic Formula:

=TRIM(MID(full name, LEN(first name)+1,LEN(full name)-LEN(fisrt name&last name)))

Before executing the formula, separate the first and last names using the abovementioned formulas. The MID function starts extracting characters right after “John”. It extracts the number of characters that are left after subtracting the lengths of “John” and “Smith” from “John Adam Smith”. TRIM would clean up unnecessary spaces, returning ‘Adam’ as the final output.

Result:

formula-extracts-the-middle-name-from-a-full-name

Take a closer look under the hood:

  1. MID(full name, LEN(first name)+1, LEN(full name)-LEN(first name&last name)): The MID function is used to extract a specific substring from the ‘full_name’ string, starting at a certain position and extending for a certain number of characters.
  2. LEN(first_name)+1 calculates and prepares the MID function’s starting position. It finds the length of the first name and adds 1.
  3. LEN(full name)-LEN(first name&last name) returns the number of characters to extract. It starts by getting the total length of ‘full name’. Next, subtract the combined length of the first name and last name. The ‘&’ character is concatenating first and last names. This subtraction leaves you with the length of the middle name.
  4. TRIM(…) removes any extra spaces from the text obtained by the MID function and cleans the results by removing leading or trailing spaces.

Extract middle names using the GETWORDS function

As you know, there are much faster solutions when working with string manipulation. The GETWORDS function extracts the middle name from the text and uses an easy-to-read syntax.

Syntax:

=GETWORDS(text, n, delimiter)

In the example, use the following formula:

=GETWORDS(B3,2," ")

The formula finds the second word in the text.

extract-middle-name

Conclusion

We hope you enjoyed this definitive on separating Excel names using formulas and functions. To learn more about the topic, use our free add-in to use powerful string manipulation functions. Stay tuned!

Download the practice file.

Additional resources:

Istvan Vozar

Istvan is the co-founder of Visual Analytics. He helps people reach the top in Excel.