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 cell into multiple rows” 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 rows 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. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. If you take one thing from this page on “excel split cell into multiple rows”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
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
On the way here you may have searched this as “multiple rows in excel cell”, “how to split a cell in excel into multiple rows” and “split excel sheet into multiple workbooks based on rows” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “multiple rows in excel cell”, “how to split a cell in excel into multiple rows”, “split excel sheet into multiple workbooks based on rows” all point at the one operation explained on this page, which is why they all lead here.