Complete the formula to calculate the subtotal of the range A1 to A10.
=SUBTOTAL([1], A1:A10)The function number 109 tells SUBTOTAL to sum the visible cells only, ignoring hidden rows.
Complete the formula to calculate the average of visible cells in B2:B20.
=SUBTOTAL([1], B2:B20)The function number 101 calculates the average ignoring hidden rows.
Fix the error in the formula to count visible numeric cells in C3:C15.
=SUBTOTAL([1], C3:C15)Function number 102 counts visible numeric cells ignoring hidden rows.
Fill both blanks to calculate the maximum of visible cells in D5:D25, ignoring hidden rows.
=SUBTOTAL([1], [2])
Function number 104 calculates the maximum ignoring hidden rows. The range is D5:D25.
Fill both blanks to calculate the count of visible non-empty cells in E10:E30.
=SUBTOTAL([1], [2])
Function number 103 counts visible non-empty cells ignoring hidden rows. The range is E10:E30.