FormulaCraft

How to split text down a whole column with ARRAYFORMULA in Excel and Google Sheets

Topic:ARRAYFORMULA (Google Sheets)

Heads up: Excel and Google Sheets do this differently.

Excel
=TEXTSPLIT(A2,",")
Google Sheets
=ARRAYFORMULA(SPLIT(A2:A4,","))

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1In Google Sheets, place your delimited data in column A (e.g., 'Alice,30,Engineer').
  2. 2In an empty cell on the same row as your first data row, type =ARRAYFORMULA(SPLIT(A2:A100,",")) and press Enter.
  3. 3Sheets splits each cell into separate columns for every row automatically — ensure the columns to the right are empty.
  4. 4In Excel 365, use =TEXTSPLIT(A2,",") per row, or use Data → Text to Columns for a one-time static split.

Tips

Need the Google Sheets version instead? Open Sheets variant in workspace →

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

Can I use ARRAYFORMULA with SPLIT for multiple delimiters?

Yes — SPLIT accepts a string of delimiter characters or you can use a regex pattern: =ARRAYFORMULA(SPLIT(A2:A100,",|;")).

Does Excel have SPLIT like Google Sheets?

Excel 365 has TEXTSPLIT which works similarly. For older Excel, use Data → Text to Columns or the LEFT/MID/FIND combination.

More on ARRAYFORMULA (Google Sheets)

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: