Challenge - 5 Problems
Merge Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate1:30remaining
What happens when you merge cells in Google Sheets?
You select cells A1, B1, and C1 and merge them into one cell. What is the value shown in the merged cell?
Attempts:
2 left
💡 Hint
Think about which cell's content Google Sheets keeps when merging.
✗ Incorrect
When you merge cells, Google Sheets keeps the value from the top-left cell only. Other cells' values are discarded.
📊 Formula Result
intermediate1:30remaining
What is the result of merging cells with formulas?
Cells A1 and B1 contain formulas: A1 has
=SUM(1,2) and B1 has =SUM(3,4). You merge A1 and B1. What is the value shown in the merged cell?Attempts:
2 left
💡 Hint
Remember which cell's content is kept after merging.
✗ Incorrect
Only the top-left cell's formula result is kept after merging. The other cell's formula is discarded.
❓ Function Choice
advanced1:30remaining
Which function can you use to combine text from multiple cells without merging?
You want to show combined text from cells A1 and B1 in one cell, but without merging cells. Which function should you use?
Attempts:
2 left
💡 Hint
Think about functions that join text strings.
✗ Incorrect
=CONCATENATE() joins text from multiple cells into one string without merging cells.
🎯 Scenario
advanced2:00remaining
You merged cells A1:C1 but want to sort the data in the original columns. What happens?
After merging cells A1, B1, and C1 into one cell, you try to sort the sheet by column B. What will happen?
Attempts:
2 left
💡 Hint
Think about how merged cells affect sorting in Google Sheets.
✗ Incorrect
Google Sheets does not allow sorting ranges that include merged cells. It shows an error.
❓ data_analysis
expert2:00remaining
How many cells are counted in a merged range for a formula?
You merged cells A1 through A5 into one cell. You use the formula
=COUNTA(A1:A5). What is the result?Attempts:
2 left
💡 Hint
Think about how formulas treat merged cells as ranges.
✗ Incorrect
Formulas treat a merged range as a single cell. COUNTA(A1:A5) returns 1 if the merged cell contains data.