0
0
Excelspreadsheet~20 mins

Filtering data with AutoFilter in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AutoFilter Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the visible row count after applying this AutoFilter?
You have a table with 10 rows of sales data in columns A to D. You apply an AutoFilter on column C to show only rows where the value is greater than 100. Which option shows the correct count of visible rows after filtering?
Excel
Data in column C: 50, 120, 90, 130, 110, 80, 140, 70, 150, 60
A4
B6
C5
D7
Attempts:
2 left
💡 Hint
Count how many values in column C are greater than 100.
Function Choice
intermediate
2:00remaining
Which function helps count visible rows after filtering?
After applying an AutoFilter on a data range, you want to count how many rows are visible (not hidden). Which Excel function should you use?
ACOUNTA(range)
BCOUNT(range)
CSUM(range)
DSUBTOTAL(3, range)
Attempts:
2 left
💡 Hint
Look for a function that ignores hidden rows.
🎯 Scenario
advanced
2:00remaining
Filter data to show only sales between $100 and $200
You have a sales table with amounts in column B. You want to use AutoFilter to show only rows where sales are between $100 and $200 inclusive. Which filter criteria should you apply?
AFilter column B with 'Greater Than or Equal To' 100 and 'Less Than or Equal To' 200
BFilter column B with 'Equals' 100 and 'Equals' 200
CFilter column B with 'Less Than' 100 or 'Greater Than' 200
DFilter column B with 'Does Not Equal' 100 and 'Does Not Equal' 200
Attempts:
2 left
💡 Hint
Think about how to include all values from 100 up to 200.
data_analysis
advanced
2:00remaining
Identify the error in this AutoFilter setup
You want to filter a list of products to show only those starting with 'A'. You apply AutoFilter with the criteria 'Begins With' set to 'a'. However, no rows appear after filtering. What is the most likely reason?
AThe filter is case-sensitive and 'a' does not match 'A'
BThe filter was applied to the wrong column
CThe data contains no products starting with 'A'
DAutoFilter does not support 'Begins With' criteria
Attempts:
2 left
💡 Hint
Check if the filter was applied to the correct column.
🧠 Conceptual
expert
2:00remaining
What happens to formulas referencing filtered rows?
You have a table with formulas summing values in column D. After applying an AutoFilter that hides some rows, what will the formula =SUM(D2:D20) show?
ASum of all values in D2:D20, including hidden rows
BSum of only visible rows in D2:D20
CSum of only hidden rows in D2:D20
DAn error because some rows are hidden
Attempts:
2 left
💡 Hint
Regular SUM does not ignore hidden rows.