How to Split Text into Columns in Google Sheets
Splitting cells helps you separate combined data like full names, addresses, or comma-separated lists into individual columns.
Select the Column to Split
Highlight the column containing the data you want to split.
Use the Split Feature
Go to Data > Split text to columns. Google Sheets automatically detects the separator.
💡 You can manually select a separator from the dropdown that appears.
Choose a Separator
Select Comma, Semicolon, Period, Space, or Custom. For phone numbers like "555-1234", choose Custom and enter the dash (-).
Use SPLIT Formula
Use =SPLIT(A1, ",") to split the contents of A1 by comma into separate cells. This method is dynamic and updates when source data changes.
Try These Templates
Frequently Asked Questions
Can I undo a split?
Yes. Immediately after splitting, use Ctrl+Z to undo.
Can I split by multiple delimiters?
Yes. Use the SPLIT formula with a regular expression: =SPLIT(A1, ",|;") splits by comma or semicolon.