0
0
Google Sheetsspreadsheet~20 mins

Row and column grouping in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Row and Column Grouping Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Grouping rows to summarize monthly sales
You have daily sales data in rows 2 to 32 for January. You want to group these rows so you can collapse and expand the daily details easily. Which action will correctly group these rows in Google Sheets?
ASelect columns B to F, then go to Data > Group columns.
BSelect rows 2 to 32, then go to Data > Group rows.
CSelect rows 1 to 31, then right-click and choose Hide rows.
DSelect rows 2 to 32, then press Ctrl + Z.
Attempts:
2 left
💡 Hint
Grouping rows is done by selecting the rows and using the Data menu.
📊 Formula Result
intermediate
2:00remaining
Effect of grouping on formula results
You have grouped rows 5 to 10 in your sheet. You use the formula =SUM(A1:A20). What will be the result of this formula compared to before grouping?
AThe formula will return an error because of grouping.
BThe sum will exclude values in grouped rows 5 to 10.
CThe sum will only include values in the grouped rows 5 to 10.
DThe sum will include all values from A1 to A20, grouping does not affect formulas.
Attempts:
2 left
💡 Hint
Grouping only changes how rows look, not the data itself.
Function Choice
advanced
2:00remaining
Choosing the right function to sum visible rows after grouping
After grouping rows and collapsing some groups, you want to sum only the visible (expanded) rows in column B. Which function will correctly sum only visible rows?
ASUBTOTAL(109, B2:B20)
BSUM(B2:B20)
CSUMIF(B2:B20, ">0")
DCOUNT(B2:B20)
Attempts:
2 left
💡 Hint
SUBTOTAL can ignore hidden rows when using certain function codes.
data_analysis
advanced
2:00remaining
Analyzing grouped columns impact on data visibility
You grouped columns C to F and collapsed the group. Which columns remain visible and accessible for editing?
AColumns A, B, G and beyond remain visible; C to F are hidden.
BAll columns remain visible but are locked from editing.
COnly columns C to F remain visible; others are hidden.
DAll columns become hidden.
Attempts:
2 left
💡 Hint
Collapsing a grouped column hides those columns from view.
🧠 Conceptual
expert
3:00remaining
Understanding nested grouping behavior
You have grouped rows 2 to 10, then inside that group, you grouped rows 4 to 6. If you collapse the outer group (2 to 10), what happens to the inner group (4 to 6)?
AInner group expands automatically when outer group collapses.
BOnly the inner group collapses; outer group remains expanded.
CBoth outer and inner groups collapse; rows 2 to 10 are hidden.
DCollapsing outer group causes an error.
Attempts:
2 left
💡 Hint
Collapsing a bigger group hides all rows inside it, including nested groups.