0
0
Excelspreadsheet~20 mins

Merge and center cells in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Merge and Center Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the result of merging and centering cells A1 to C1 with text?

You have text in cell A1: "Sales Report". You select cells A1 to C1 and apply Merge and Center. What will be the visible output in the merged cell?

AThe text "Sales Report" appears only in cell A1, and cells B1 and C1 remain empty.
BThe text "Sales Report" is duplicated in cells A1, B1, and C1.
CThe text "Sales Report" appears centered across the merged cells A1:C1.
DThe text disappears and the merged cells appear empty.
Attempts:
2 left
💡 Hint

Think about what Merge and Center does to the text in the first cell.

🎯 Scenario
intermediate
2:00remaining
How to keep data from multiple cells after merging?

You have values in cells A1: "Jan", B1: "Feb", and C1: "Mar". You want to merge these cells and keep all three month names visible in the merged cell. Which approach works best?

AConcatenate the values into one cell first, then merge and center.
BCopy all values into one cell manually, then merge and center.
CSelect A1:C1 and click Merge and Center directly.
DMerge and Center will automatically combine all text from the selected cells.
Attempts:
2 left
💡 Hint

Think about how Excel handles text in multiple cells when merging.

Function Choice
advanced
2:00remaining
Which formula combines text from cells A1, B1, and C1 for merging?

You want to merge cells A1:C1 and display combined text from these cells in the merged cell. Which formula correctly combines the text with commas?

AAll of the above
B=A1 & ", " & B1 & ", " & C1
C=TEXTJOIN(", ", TRUE, A1:C1)
D=CONCATENATE(A1, ", ", B1, ", ", C1)
Attempts:
2 left
💡 Hint

Consider different ways to join text in Excel.

📊 Formula Result
advanced
2:00remaining
What happens to cell references after merging cells?

You merge cells A1 to C1. Then you enter a formula in D1: =A1. What value does D1 show?

AZero, because merged cells cannot be referenced.
BA #REF! error because A1 is merged.
CThe value from the original A1 before merging.
DThe value from the merged cell A1:C1.
Attempts:
2 left
💡 Hint

Think about how Excel treats merged cells as one cell.

data_analysis
expert
2:00remaining
Identify the issue with merged cells in sorting data

You have a table with merged header cells in row 1 (A1:C1 merged). When you try to sort the data below by column A, what problem occurs?

AThe merged cells split automatically before sorting.
BExcel shows an error and refuses to sort because of merged cells.
COnly the merged header row moves, data stays in place.
DThe sort works normally without any issues.
Attempts:
2 left
💡 Hint

Think about how merged cells affect sorting operations.