0
0
Google Sheetsspreadsheet~20 mins

Filtering with filter views in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Filter Views Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Using Filter Views to Show Only Sales Above $500

You have a sales data sheet with columns: Product, Sales, and Date. You want to create a filter view that only shows rows where Sales is greater than 500.

Which step correctly creates this filter view?

AUse conditional formatting to highlight Sales above 500, then filter by color.
BClick Data > Create a filter, then manually hide rows with Sales less than 500.
CSelect Sales column, right-click, choose 'Hide column' for values less than 500.
DClick Data > Filter views > Create new filter view, then set filter on Sales column to 'Greater than' 500.
Attempts:
2 left
💡 Hint

Filter views allow you to save and reuse filters without changing the original data for others.

📊 Formula Result
intermediate
1:30remaining
Result of Applying a Filter View on Dates

You have a filter view that filters the Date column to show only dates after 2023-01-01. The data has these dates:

  • 2022-12-31
  • 2023-01-01
  • 2023-01-02
  • 2023-02-15

How many rows will be visible in the filter view?

A2
B3
C1
D4
Attempts:
2 left
💡 Hint

Remember the filter is for dates strictly after 2023-01-01.

Function Choice
advanced
2:30remaining
Choosing the Right Function to Filter Data in a Filter View

You want to create a filter view that shows only rows where the Status column equals "Completed" and the Amount column is greater than 1000.

Which formula would you use in a helper column to assist filtering?

A=OR(Status="Completed", Amount>1000)
B=AND(Status="Completed", Amount>1000)
C=IF(Status="Completed", Amount>1000, FALSE)
D=NOT(AND(Status="Completed", Amount<=1000))
Attempts:
2 left
💡 Hint

Both conditions must be true to show the row.

data_analysis
advanced
2:00remaining
Analyzing Filter View Impact on Data Summary

You have a dataset with 100 rows. You create a filter view to show only rows where Category is "Electronics". There are 30 such rows.

If you use the SUBTOTAL(9, Amount) function on the Amount column, what will it calculate when the filter view is active?

AAverage of Amount for the 30 visible rows.
BSum of Amount for all 100 rows, ignoring filter view.
CSum of Amount only for the 30 visible rows in the filter view.
DCount of rows where Amount is not empty.
Attempts:
2 left
💡 Hint

SUBTOTAL with function number 9 sums only visible rows, including filtered ones.

🧠 Conceptual
expert
3:00remaining
Understanding Filter Views and User Collaboration

In Google Sheets, multiple users are working on the same sheet simultaneously. One user creates a filter view to analyze data without affecting others.

Which statement best describes how filter views behave in this scenario?

AFilter views apply only to the user who created them and do not change what others see.
BFilter views change the sheet for all users, hiding rows globally.
COnly one filter view can exist at a time, shared by all users.
DFilter views automatically refresh and merge filters from all users.
Attempts:
2 left
💡 Hint

Think about how filter views help individuals without disrupting others.