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.
3 rows
| Ada Lovelace | London | 1815 |
| Grace Hopper | New York | 1906 |
| Alan Turing | London | 1912 |
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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. Treat “excel split column into multiple columns” 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 columns 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. 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
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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. Here is the takeaway for “excel split column into multiple columns”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
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.