0
0
Google Sheetsspreadsheet~20 mins

Split text to columns in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Split Text Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Split a full name into first and last name
You have the full name "John Doe" in cell A1. Which formula correctly splits the first and last name into separate cells?
A=TEXTSPLIT(A1, ",")
B=SPLIT(A1, " ")
C=SPLIT(A1, ",")
D=TEXTSPLIT(A1, " ")
Attempts:
2 left
💡 Hint
Think about what character separates the first and last name.
Function Choice
intermediate
2:00remaining
Choose the correct function to split CSV data
You have a cell A1 containing the text "apple,banana,cherry". Which function will split this text into separate cells for each fruit?
ASPLIT(A1, " ")
BTEXTSPLIT(A1, ",")
CSPLIT(A1, ",")
DTEXTJOIN(A1, ",")
Attempts:
2 left
💡 Hint
Look for the function that divides text by commas.
🎯 Scenario
advanced
2:30remaining
Split a date-time string into date and time
Cell A1 contains the text "2024-06-15 14:30:00". You want to split this into date and time in two separate cells. Which formula will do this correctly?
A=TEXTSPLIT(A1, " ")
B=SPLIT(A1, ":")
C=SPLIT(A1, "-")
D=SPLIT(A1, " ")
Attempts:
2 left
💡 Hint
What separates the date and time in the string?
📊 Formula Result
advanced
3:00remaining
Result of splitting a text with multiple delimiters
Cell A1 contains "red;green,blue|yellow". You want to split this text into separate cells by any of the delimiters ;, ,, or |. Which formula produces the correct split?
A=SPLIT(A1, ";,|", TRUE, TRUE)
B=SPLIT(A1, ";,|", FALSE, TRUE)
C=SPLIT(A1, ";,|", TRUE)
D=SPLIT(A1, ";,|")
Attempts:
2 left
💡 Hint
Check the parameters for splitting by multiple delimiters.
data_analysis
expert
2:00remaining
Count how many columns result from splitting text
Cell A1 contains "one,two,three,four". You use the formula =COUNTA(SPLIT(A1, ",")). What is the result?
A4
B0
C1
DError
Attempts:
2 left
💡 Hint
How many items are separated by commas in the text?