Loading...
Profile Image

Profile Image

How do I split up full name into first and last name in Excel?

How do I split up full name into first and last name in Excel?

About

FAQ: How do I split up full name into first and last name in Excel?



Content

In Excel, you can split a full name into first and last names using various methods. Here's a common method using the Text to Columns feature:

  1. Assuming the full names are in column A:
  • Select the column containing the full names (column A).
  • Go to the "Data" tab in the Excel ribbon.
  1. Text to Columns:
  • Click on "Text to Columns" in the Data Tools group.
  • Choose "Delimited" and click "Next."
  1. Choose Delimiter:
  • Select "Space" as the delimiter (assuming there's a space between the first and last names).
  • Click "Next."
  1. Column Data Format:
  • You can leave the column data format as "General" and click "Finish."

Excel will then split the full names into two columns: one for the first names and one for the last names.

Alternatively, if you want to use formulas:

  1. Assuming the full name is in cell A1:
  • In cell B1, you can use the formula =LEFT(A1,SEARCH(" ",A1)-1) to extract the first name.
  • In cell C1, you can use the formula =MID(A1,SEARCH(" ",A1)+1,LEN(A1)) to extract the last name.
  1. Drag these formulas down for the entire column if you have multiple names.
  • Click on the bottom right corner of the cell (fill handle) and drag it down to fill the cells in the column.

These formulas assume there is a space between the first and last names. Adjust the formulas accordingly if your names are formatted differently.