0
0
Excelspreadsheet~20 mins

Grouping and outlining in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Grouping and Outlining Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
What happens when you group rows in Excel?
You select rows 5 to 10 and use the Group feature in Excel. What is the immediate effect on the worksheet?
ARows 5 to 10 are locked so you cannot edit them.
BRows 5 to 10 are deleted from the worksheet.
CRows 5 to 10 are copied to a new worksheet.
DRows 5 to 10 are hidden and a small button appears to expand or collapse them.
Attempts:
2 left
💡 Hint

Think about what grouping does to help you manage large data sets.

📊 Formula Result
intermediate
2:00remaining
Outline level effect on subtotal formula
You have a list of sales data grouped by region. You use the SUBTOTAL function with function_num 9 (SUM) on the entire data including groups. What does SUBTOTAL do when some rows are hidden by grouping?
Excel
=SUBTOTAL(9, B2:B20)
AIt sums only the visible rows, ignoring hidden rows from grouping.
BIt sums all rows, including hidden ones.
CIt returns zero if any rows are hidden.
DIt returns an error if rows are grouped.
Attempts:
2 left
💡 Hint

SUBTOTAL can ignore hidden rows depending on the function number used.

🎯 Scenario
advanced
2:00remaining
Using multiple outline levels
You have a worksheet with sales data grouped by Region (rows 2-20) and inside each region, grouped by Salesperson (rows 3-6, 7-10, etc.). What happens when you click the number 2 in the outline bar on the left?
AOnly the Region groups are expanded; Salesperson groups are collapsed.
BAll groups are fully expanded.
CAll groups are fully collapsed.
DOnly Salesperson groups are expanded; Region groups are collapsed.
Attempts:
2 left
💡 Hint

Outline levels control how detailed the view is.

Function Choice
advanced
1:30remaining
Choosing the right function to ignore hidden rows
You want to calculate the average of a range but ignore rows hidden by grouping or filtering. Which function should you use?
ASUM() / COUNT()
BSUBTOTAL(1, range)
CAVERAGE()
DCOUNT()
Attempts:
2 left
💡 Hint

SUBTOTAL has special behavior with hidden rows.

data_analysis
expert
2:30remaining
Analyzing outline summary rows
You have a worksheet with grouped data and summary rows at each group level. You want a formula that sums only the summary rows (the rows that show totals for each group) but not the detail rows. Which approach works best?
AUse SUM on the entire range; it ignores detail rows automatically.
BUse SUBTOTAL on the entire range; it sums only summary rows automatically.
CUse SUMIF with a helper column marking summary rows manually.
DUse SUMPRODUCT with ISNUMBER(SEARCH("Total", A:A)) to find summary rows by text.
Attempts:
2 left
💡 Hint

Excel does not automatically identify summary rows in formulas.