0
0
Google Sheetsspreadsheet~20 mins

Merge cells in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Merge Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1: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?
AThe value of the top-left cell (A1) is shown
BThe value of the bottom-right cell (C1) is shown
CThe merged cell is empty regardless of original values
DThe values of all cells are combined and shown
Attempts:
2 left
💡 Hint
Think about which cell's content Google Sheets keeps when merging.
📊 Formula Result
intermediate
1: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?
A10, sum of both formulas' results
B3, the result of A1's formula
C7, the result of B1's formula
DAn error because formulas conflict
Attempts:
2 left
💡 Hint
Remember which cell's content is kept after merging.
Function Choice
advanced
1: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?
A=COMBINE(A1,B1)
B=MERGE(A1,B1)
C=JOIN(A1:B1)
D=CONCATENATE(A1,B1)
Attempts:
2 left
💡 Hint
Think about functions that join text strings.
🎯 Scenario
advanced
2: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?
ASorting will fail with an error about merged cells
BSorting will work normally, keeping merged cells intact
CSorting will unmerge the cells automatically
DSorting will ignore merged cells and sort only unmerged rows
Attempts:
2 left
💡 Hint
Think about how merged cells affect sorting in Google Sheets.
data_analysis
expert
2: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?
A0, because merged cells are ignored by COUNTA
B5, counting all original cells in the range
C1, because merged cells count as one cell
DAn error, because COUNTA cannot handle merged cells
Attempts:
2 left
💡 Hint
Think about how formulas treat merged cells as ranges.