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 it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

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

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

Last reviewed: