How to Split Text in a Cell in Excel

If you just need to split text in a cell 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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “split text in a cell in excel”. Start on a copy or a tiny sample, keep the affected cells visible, and compare the result with the tool above before you touch the real workbook. 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. The point is a text operation that turns messy entries into clean, usable data, but the practical win is that someone else can open the file and understand what happened without asking you.

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. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “split text in a cell 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

People reach this page typing “how to split text in excel cell”, “excel split text in cell”, “split text in a cell in excel” and “excel split cell text”, among other phrasings; whichever wording you used, the fix above is the one you want.

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

Because the same task has many names. “how to split text in excel cell”, “excel split text in cell”, “split text in a cell in excel” all point at the one operation explained on this page, which is why they all lead here.