0
0
Google Sheetsspreadsheet~5 mins

SPLIT function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the SPLIT function do in Google Sheets?
The SPLIT function divides text into separate parts based on a chosen separator, placing each part into its own cell.
Click to reveal answer
beginner
Syntax of SPLIT function?
SPLIT(text, delimiter, [split_by_each], [remove_empty_text])<br><br> - text: The text to split.<br> - delimiter: The character(s) to split by.<br> - split_by_each (optional): TRUE splits by each character in delimiter, FALSE treats delimiter as whole.<br> - remove_empty_text (optional): TRUE removes empty cells from results.
Click to reveal answer
beginner
What happens if you use SPLIT("apple,banana,orange", ",")?
The text "apple,banana,orange" is split at each comma, resulting in three cells: "apple" | "banana" | "orange".
Click to reveal answer
intermediate
How does the optional parameter split_by_each affect SPLIT?
If split_by_each is TRUE (default), SPLIT breaks text at each character in the delimiter string.<br>If FALSE, SPLIT looks for the whole delimiter string to split by.
Click to reveal answer
intermediate
What does the remove_empty_text parameter do in SPLIT?
If remove_empty_text is TRUE (default), empty cells created by consecutive delimiters are removed.<br>If FALSE, empty cells appear where delimiters are next to each other.
Click to reveal answer
What is the correct way to split the text "red|green|blue" into separate cells using SPLIT?
ASPLIT("red|green|blue", "|")
BSPLIT("red|green|blue", ",")
CSPLIT("red|green|blue", " ")
DSPLIT("red|green|blue")
If you use SPLIT("a--b--c", "--", FALSE), what will happen?
AText does not split at all.
BText splits at each '-' character.
CText splits at the whole "--" string.
DAn error occurs.
What does SPLIT("one,,three", ",", TRUE, FALSE) return?
Aone | , | three
Bone | three
Cone,,three
Done | (empty) | three
Which parameter controls whether SPLIT treats the delimiter as a whole or as separate characters?
Asplit_by_each
Bdelimiter
Ctext
Dremove_empty_text
What is the default value of remove_empty_text in SPLIT?
ANo default
BTRUE
CDepends on delimiter
DFALSE
Explain how to use the SPLIT function to separate a list of names separated by semicolons into individual cells.
Think about what character separates the names and how SPLIT uses that.
You got /3 concepts.
    Describe the effect of the split_by_each and remove_empty_text parameters in the SPLIT function.
    Consider how splitting changes if delimiter is treated as whole or by each character, and what happens with consecutive delimiters.
    You got /3 concepts.