Challenge - 5 Problems
Master of CONCATENATE and CONCAT
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
What is the output of this CONCATENATE formula?
Given the cells:
A1 contains "Good"
B1 contains "Morning"
What is the result of the formula
A1 contains "Good"
B1 contains "Morning"
What is the result of the formula
=CONCATENATE(A1, " ", B1)?Excel
=CONCATENATE(A1, " ", B1)Attempts:
2 left
💡 Hint
Think about what the space " " inside the formula does.
✗ Incorrect
The CONCATENATE function joins text strings exactly as given. The space " " adds a space between the words.
📊 Formula Result
intermediate1:30remaining
What does this CONCAT formula return?
If cell A2 contains "2024" and B2 contains "June", what is the output of
=CONCAT(A2, "-", B2)?Excel
=CONCAT(A2, "-", B2)Attempts:
2 left
💡 Hint
Look at the character between the two cell references.
✗ Incorrect
CONCAT joins the values with the exact characters you specify. The dash "-" is included as is.
❓ Function Choice
advanced2:00remaining
Which formula correctly joins cells A3, B3, and C3 with commas and spaces?
Cells contain:
A3: "Apple"
B3: "Banana"
C3: "Cherry"
Choose the formula that outputs:
A3: "Apple"
B3: "Banana"
C3: "Cherry"
Choose the formula that outputs:
Apple, Banana, CherryAttempts:
2 left
💡 Hint
CONCAT can take multiple arguments separated by commas.
✗ Incorrect
CONCAT accepts multiple arguments separated by commas and joins them. CONCATENATE requires each argument separately. Options B and C use & inside CONCATENATE or CONCAT which is invalid syntax.
📊 Formula Result
advanced1:30remaining
What is the output of this formula with empty cells?
If A4 is empty, B4 contains "Hello", and C4 contains "World", what does
=CONCATENATE(A4, "-", B4, "-", C4) return?Excel
=CONCATENATE(A4, "-", B4, "-", C4)
Attempts:
2 left
💡 Hint
Empty cells are treated as empty strings.
✗ Incorrect
CONCATENATE treats empty cells as empty text, so the dashes remain in the output.
🎯 Scenario
expert2:30remaining
You want to join a range of cells A5:A7 with spaces between words. Which formula produces the correct result?
Cells contain:
A5: "I"
A6: "love"
A7: "Excel"
Which formula outputs:
A5: "I"
A6: "love"
A7: "Excel"
Which formula outputs:
I love Excel?Attempts:
2 left
💡 Hint
CONCAT and CONCATENATE do not add separators automatically for ranges.
✗ Incorrect
TEXTJOIN allows joining a range with a delimiter and can ignore empty cells. CONCAT and CONCATENATE do not accept ranges with delimiters.