Complete the formula to filter values in column A that are greater than 10.
=FILTER(A2:A10, A2:A10 [1] 10)
The FILTER function returns values from A2:A10 where the condition is true. Here, we want values greater than 10, so we use >.
Complete the formula to filter values in column B that are not empty.
=FILTER(B2:B20, B2:B20 [1] "")
The operator <> means 'not equal to'. This filters cells in B2:B20 that are not empty strings.
Fix the error in the formula to filter values in column C that are less than or equal to 50.
=FILTER(C2:C15, C2:C15 [1] 50)
The correct operator for 'less than or equal to' is <=. The option '=>' is invalid syntax.
Fill both blanks to filter values in column D that are between 20 and 40 inclusive.
=FILTER(D2:D30, D2:D30 [1] 20, D2:D30 [2] 40)
The formula filters values greater than or equal to 20 and less than or equal to 40. So use >= for the lower bound and <= for the upper bound.
Fill all three blanks to filter values in column E where values are greater than 5 and less than 15, and the corresponding value in column F is 'Yes'.
=FILTER(E2:E25, E2:E25 [1] 5, E2:E25 [2] 15, F2:F25 [3] "Yes")
The formula filters values in E2:E25 greater than 5 and less than 15, and only rows where F2:F25 equals 'Yes'. So use > for greater than, < for less than, and = for equality.