How to Separate Names in Excel

If you just need to separate names in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: select the column, then Data ▸ Text to Columns ▸ Delimited, tick the separator (space, comma, etc.) and Excel spreads each piece into its own column; Fixed width splits at set character positions instead.

ƒxText to Columns SplitterLive
Columns found
3

3 rows

Ada LovelaceLondon1815
Grace HopperNew York1906
Alan TuringLondon1912
Runs entirely in your browser — your data never leaves this page.
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

Splitting takes one column whose cells each hold several pieces of information and spreads those pieces across separate columns — a full name in one cell becomes a first-name column and a last-name column. The main tool is Data ▸ Text to Columns: in Delimited mode you pick the character that separates the parts (a space, comma, tab or semicolon) and Excel breaks every cell at that character; Fixed width instead cuts at character positions you set, for data with no separator. This is the exact inverse of combining columns. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “separate names in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That turns a text operation that turns messy entries into clean, usable data into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

"Ada Lovelace" sits in A2 and you want first and last name apart. Select column A, choose Data ▸ Text to Columns, pick Delimited, tick Space as the delimiter, and the preview shows "Ada" and "Lovelace" splitting into two columns; finish and "Ada" lands in A2 with "Lovelace" pushed into B2. For a one-off, type "Ada" in B2, press Ctrl+E (Flash Fill) and Excel separates the rest. As a live formula, =TEXTBEFORE(A2," ") returns the first name and =TEXTAFTER(A2," ") the last. Splitting a column untangles data that arrived crammed together — names, addresses, codes, exported CSV fields — into clean separate columns you can sort, filter and look up. It is the everyday inverse of combining columns, and the pair let you reshape data either way. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. The short version of “separate names in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Forgetting to leave empty columns to the right, so Text to Columns overwrites the data already there.
  • Picking the wrong delimiter — choosing comma when the names are separated by a space leaves them unsplit.
  • Using Delimited for fixed-position data (or vice versa), so the cuts land in the wrong place.
  • Splitting a column of numbers and letting Excel reformat them as text or dates — set the column data format in the wizard if it matters.

Frequently asked questions

How do I separate first and last name into two columns?

Select the name column, Data ▸ Text to Columns ▸ Delimited, tick Space, and Finish — the first name stays put and the last name moves to the next column. Ctrl+E (Flash Fill) does it from one typed example too.

Text to Columns or Flash Fill?

Text to Columns is a one-pass wizard with delimiter control; Flash Fill (Ctrl+E) learns from an example and is quickest for a single, regular pattern. Neither updates live — for that use =TEXTBEFORE/=TEXTAFTER.

How do I split without overwriting the next column?

Insert blank columns to the right first, or run Text to Columns into a separate destination, so the pieces have empty cells to fill instead of replacing existing data.

Other ways people ask this

This is also commonly searched as “separate names in excel”, “how do i separate names in excel”, “how do you separate names in excel” and “how to separate a name in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.

Why do people search for this in so many different ways?

Because the same task has many names. “separate names in excel”, “how do i separate names in excel”, “how do you separate names in excel” all point at the one operation explained on this page, which is why they all lead here.