0
0
Google Sheetsspreadsheet~10 mins

SPLIT function in Google Sheets - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows text strings in column A with different delimiters: commas, semicolons, and vertical bars.

CellValue
A1apple,banana,orange
A2cat;dog;mouse
A3red|green|blue
Formula Trace
=SPLIT(A1, ",")
Step 1: A1
Step 2: delimiter ","
Step 3: SPLIT("apple,banana,orange", ",")
Cell Reference Map
   A                   B       C       D
1  apple,banana,orange  apple   banana  orange
2  cat;dog;mouse
3  red|green|blue
The formula references cell A1 which contains a comma-separated list. The SPLIT function uses the comma as delimiter to split the text into separate cells horizontally.
Result
   A                   B       C       D
1  apple,banana,orange  apple   banana  orange
2  cat;dog;mouse
3  red|green|blue
After applying SPLIT to A1 with comma delimiter, the text is split into three separate cells in columns B, C, and D.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the SPLIT function do with the text in A1?
ACounts the number of commas
BSeparates the text into parts where commas appear
CJoins the text into one string
DReplaces commas with spaces
Key Result
SPLIT(text, delimiter) splits text into parts where delimiter appears, placing each part in adjacent cells horizontally.