Complete the code to apply a filter that shows only rows where the value in column A is greater than 10.
FILTER(A2:H100, A2:A100 [1] 10)
The filter condition should check if values in column A are greater than 10, so the correct operator is >.
Complete the code to apply a filter that shows only rows where scores in column B are at least 80.
FILTER(A2:H100, B2:B100 [1] 80)
To include scores 80 and above, use the >= operator which means 'greater than or equal to'.
Fix the error in the filter formula to correctly show rows where column C equals 'Complete'.
FILTER(A2:H100, C2:C100 [1] "Complete")
In Google Sheets formulas, the single equals sign = is used for comparison, not == or ===.
Fill both blanks to create a filter that shows rows where column D is not empty and column E is less than 50.
FILTER(A2:H100, D2:D100 [1] "", E2:E100 [2] 50)
To check if a cell is not empty, use <> "". To filter values less than 50, use < 50.
Fill all three blanks to create a filter that shows rows where column F is 'Yes', column G is greater than 100, and column H is not empty.
FILTER(A2:H100, F2:F100 [1] "Yes", G2:G100 [2] 100, H2:H100 [3] "")
Use = "Yes" to match exact text, > 100 for numbers greater than 100, and <> "" to check cells are not empty.