Skip to main content

Extract first initial and last name from full name

Supposing, you have a list of full names, now, you would like to extract the first initial and last name or first name and first character of last name from the full name as below screenshots shown. How could you deal with these tasks in Excel workbook?


Extract first initial and last name from full name in Excel

To extract the first initial and last name, the combination of LEFT, RIGHT, LEN and FIND functions can do you a favor, the generic syntax is:

=LEFT(text,1)&RIGHT(text,LEN(text)-FIND(" ",text)+1)
  • text: A full name or cell value that you want to use.

Please enter or copy the following formula into a blank cell:

=LEFT(A2,1)&RIGHT(A2,LEN(A2)-FIND(" ",A2)+1)

Then, drag the fill handle down to the cells that you want to apply this formula, and you will get all first initial and last names have been extracted, see screenshot:


Explanation of the formula:

1. LEFT(A2,1): This LEFT function is used to extract the first character of the cell A2. This will get the first initial ā€œJā€.

2. RIGHT(A2,LEN(A2)-FIND(" ",A2)+1):

  • FIND(" ",A2): This FIND function returns the position of the space character. It will get the number 6.
  • LEN(A2)-FIND(" ",A2)+1: The length of A2 subtracts the number of the position space character, adding 1 means to include the space character when extracting the data. This will number of characters to be returned from the end of the cellA2. This is recognized as the num_chars of the RIGHT function.

3. LEFT(A2,1)&RIGHT(A2,LEN(A2)-FIND(" ",A2)+1): At last, using the & symbol to join the first initial returned by the LEFT function and last name which returned by the RIGHT function.


Extract first name and first character of last name from full name in Excel

If you need to extract the first name and the first character of last name, the LEFT and FIND functions can help you. The generic syntax is:

=LEFT(text,FIND(" ",text)+1)
  • text: A full name or cell value that you want to use.

Please copy or enter the below formula into a blank cell:

=LEFT(A2,FIND(" ",A2)+1)

And then, drag the fill handle down to the cells that you want to apply this formula, and all the first names and the first character of the last names have been extracted, see screenshot:


Explanation of the formula:

FIND(" ",A2)+1: The FIND function is used to return the position of the space character in cell A2, adding 1 means to get the position of the first character after the space. This will be recognized as the num_chars argument in the LEFT function.

LEFT(A2,FIND(" ",A2)+1): This LEFT function is used to extract the number of characters that returned by the FIND function from the left side of cell A2.


Relative functions used:

  • LEFT:
  • The LEFT function extracts the given number of characters from the left side of a supplied string.
  • RIGHT:
  • The RIGHT function is used to extract a specific number of characters from the right side of the text string
  • LEN:
  • The LEN function returns the number of characters in a text string.
  • FIND:
  • The FIND function is used to find a string within another string, and returns the starting position of the string inside another one

More articles:

  • Flip Or Reverse First And Last Names In Excel List
  • If you have a list of full names which are formatted as last name and first name, now, you want to flip the last and first names to first and last as below screenshot shown. This article, I will introduce some formulas for dealing with this job in Excel.
  • Extract Multiple Lines From A Cell
  • If you have a list of text strings which are separated by line breaks (that occurs by pressing Alt + Enter keys when entering the text), and now, you want to extract these lines of text into multiple cells as below screenshot shown. How could you solve it with a formula in Excel?
  • Extract Nth Word From Text String In Excel
  • If you have a list of text strings or sentences, now, you want to extract the specific nth word from the list as below screenshot shown. This article, I will introduce some methods for solving this job in Excel.
  • Extract Text Between Parentheses From Text String
  • If there is part of the text surrounded with the parentheses within the text string, now, you need to extract all the text strings between the parentheses as following screenshot shown. How could you solve this task in Excel quickly and easily?

The Best Office Productivity Tools

Kutools for Excel - Helps You To Stand Out From Crowd

šŸ¤– Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functionsā€¦
Popular Features: Find, Highlight or Identify Duplicates  |  Delete Blank Rows  |  Combine Columns or Cells without Losing Data  |  Round without Formula ...
Super VLookup: Multiple Criteria  |  Multiple Value  |  Across Multi-Sheets  |  Fuzzy Lookup...
Adv. Drop-down List: Easy Drop Down List  |  Dependent Drop Down List  |  Multi-select Drop Down List...
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  Compare Columns to Select Same & Different Cells ...
Featured Features: Grid Focus  |  Design View  |  Big Formula Bar  |  Workbook & Sheet Manager | Resource Library (Auto Text)  |  Date Picker  |  Combine Worksheets  |  Encrypt/Decrypt Cells  |  Send Emails by List  |  Super Filter  |  Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters ...)  |  50+ Chart Types (Gantt Chart ...)  |  40+ Practical Formulas (Calculate age based on birthday ...)  |  19 Insertion Tools (Insert QR Code, Insert Picture from Path ...)  |  12 Conversion Tools (Numbers to Words, Currency Conversion ...)  |  7 Merge & Split Tools (Advanced Combine Rows, Split Excel Cells ...)  |  ... and more

Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Description


Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)

  • One second to switch between dozens of open documents!
  • Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
  • Increases your productivity by 50% when viewing and editing multiple documents.
  • Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
Comments (3)
Rated 4.5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Gleesh is right! Shan is a Dumbass.

Before you comment make sure you understand the explanations provided very clearly.

This totally answered my question.
Rated 4.5 out of 5
This comment was minimized by the moderator on the site
This absolutely did NOT work. Occasionally it worked for the first one, but the formula did not translate to other cells and kept inputting the first cell's data
This comment was minimized by the moderator on the site
You're an absolute dumbass
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations