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
How do you split the text "apple,banana,orange" into separate cells using a comma as the separator?
Use the formula:
=SPLIT("apple,banana,orange", ","). This will put "apple", "banana", and "orange" into separate cells horizontally.Click to reveal answer
intermediate
Can SPLIT function handle multiple separators at once?
Yes! You can provide multiple separators as a string. For example,
=SPLIT(A1, ",; ") splits text at commas, semicolons, or spaces.Click to reveal answer
beginner
What happens if the separator is not found in the text when using SPLIT?
The entire text stays in the original cell because there is nothing to split.
Click to reveal answer
beginner
How can you split text into columns without using a formula?
Use the menu: Select the cells → Click Data → Choose Split text to columns → Pick the separator from the dropdown.
Click to reveal answer
Which formula splits the text "red|green|blue" into separate cells using the pipe symbol?
✗ Incorrect
The pipe symbol | is the separator, so it must be used as the second argument in SPLIT.
What will happen if you use =SPLIT("hello world", ",")?
✗ Incorrect
Since there is no comma in "hello world", the text stays in one cell.
How do you split text using multiple separators like comma and space?
✗ Incorrect
You list all separators inside the second argument as a string, like ",; " to split at commas, semicolons, or spaces.
Which menu option lets you split text to columns without typing a formula?
✗ Incorrect
The correct menu is Data > Split text to columns.
If you want to split text vertically into rows instead of columns, what should you do?
✗ Incorrect
SPLIT splits text into columns by default. To get rows, wrap SPLIT with TRANSPOSE.
Explain how to use the SPLIT function to separate text into columns in Google Sheets.
Think about what character divides your text.
You got /4 concepts.
Describe two ways to split text into columns in Google Sheets.
One way uses a formula, the other uses a menu option.
You got /2 concepts.