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?
✗ Incorrect
The delimiter is the pipe character "|", so you must specify it as the second argument.
If you use SPLIT("a--b--c", "--", FALSE), what will happen?
✗ Incorrect
With split_by_each set to FALSE, SPLIT looks for the whole delimiter "--" to split the text.
What does SPLIT("one,,three", ",", TRUE, FALSE) return?
✗ Incorrect
remove_empty_text is FALSE, so empty cells from consecutive commas are kept.
Which parameter controls whether SPLIT treats the delimiter as a whole or as separate characters?
✗ Incorrect
The split_by_each parameter controls how the delimiter is interpreted.
What is the default value of remove_empty_text in SPLIT?
✗ Incorrect
By default, SPLIT removes empty text cells created by consecutive delimiters.
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.