0
0
Google Sheetsspreadsheet~20 mins

CONCATENATE and JOIN in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
CONCATENATE and JOIN Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the output of this JOIN formula?
Given the cells A1=Apple, A2=Banana, A3=Cherry, what is the result of the formula =JOIN(", ", A1:A3)?
Google Sheets
=JOIN(", ", A1:A3)
AApple, Banana, Cherry
BAppleBananaCherry
CApple; Banana; Cherry
DApple, Banana; Cherry
Attempts:
2 left
💡 Hint
JOIN combines text with a separator you choose.
📊 Formula Result
intermediate
1:30remaining
What does this CONCATENATE formula produce?
If B1 contains "Hello" and B2 contains "World", what is the output of =CONCATENATE(B1, " ", B2)?
Google Sheets
=CONCATENATE(B1, " ", B2)
AHello World
BHello-World
CHelloWorld
DHello, World
Attempts:
2 left
💡 Hint
CONCATENATE joins text exactly as you list it.
Function Choice
advanced
2:00remaining
Which formula correctly joins cells A1 to A4 with a dash (-) between them?
Choose the formula that will produce the text: "Red-Green-Blue-Yellow" from cells A1=Red, A2=Green, A3=Blue, A4=Yellow.
A=JOIN(A1:A4, "-")
B=TEXTJOIN("-", TRUE, A1:A4)
C=JOIN("-", A1:A4)
D=CONCATENATE(A1, "-", A2, "-", A3, "-", A4)
Attempts:
2 left
💡 Hint
JOIN takes the separator first, then the range.
🎯 Scenario
advanced
2:00remaining
You want to combine first and last names from columns A and B with a space between. Which formula is best?
Columns A and B contain first and last names respectively. You want full names like "John Smith" in column C. Which formula in C1 will do this correctly?
A=TEXTJOIN("", TRUE, A1, B1)
B=JOIN(" ", A1:B1)
C=A1 & " " & B1
D=CONCATENATE(A1, " ", B1)
Attempts:
2 left
💡 Hint
CONCATENATE and & both join text, but JOIN needs a range.
data_analysis
expert
2:00remaining
How many items does this JOIN formula combine?
Given the range A1:A5 contains {"Dog", "Cat", "", "Fish", "Bird"}, what is the number of items combined by =JOIN(",", A1:A5)?
Google Sheets
=JOIN(",", A1:A5)
A3
B4
C5
DDepends on non-empty cells only
Attempts:
2 left
💡 Hint
JOIN includes empty cells as empty strings.