0
0
Google Sheetsspreadsheet~5 mins

Split text to columns 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
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?
A=SPLIT("red|green|blue", " ")
B=SPLIT("red|green|blue", ",")
C=SPLIT("red|green|blue", "|")
D=SPLIT("red|green|blue", ";")
What will happen if you use =SPLIT("hello world", ",")?
AText splits into two cells at the space
BFormula returns an error
CText splits into two cells at the comma
DText stays in one cell because comma is not found
How do you split text using multiple separators like comma and space?
A=SPLIT(A1, ",")
B=SPLIT(A1, ",; ")
C=SPLIT(A1, ", ")
D)" ," ,1A(TILPS=
Which menu option lets you split text to columns without typing a formula?
AData > Split text to columns
BTools > Split columns
CFormat > Split text
DInsert > Split text
If you want to split text vertically into rows instead of columns, what should you do?
AUse TRANSPOSE with SPLIT
BUse SPLIT normally
CUse SPLIT with a vertical separator
DUse the menu option Split text to rows
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.