Complete the formula to filter values greater than 50 in column A.
=FILTER(A2:A10, A2:A10 [1] 50)
The formula filters values in A2:A10 that are greater than 50 using the > operator.
Complete the formula to filter rows where column B equals "Completed".
=FILTER(A2:C10, B2:B10 [1] "Completed")
The formula filters rows where the value in column B is exactly "Completed" using the = operator.
Fix the error in the formula to filter values in column C less than or equal to 100.
=FILTER(C2:C20, C2:C20 [1] 100)
The correct operator for 'less than or equal to' in Excel is <=.
Fill both blanks to filter rows where column A is greater than 10 and column B is less than 20.
=FILTER(A2:B15, (A2:A15 [1] 10) * (B2:B15 [2] 20))
The formula filters rows where column A values are greater than 10 and column B values are less than 20 using > and < operators.
Fill all three blanks to filter rows where column A is not equal to 5, column B is greater than or equal to 10, and column C is less than 50.
=FILTER(A2:C20, (A2:A20 [1] 5) * (B2:B20 [2] 10) * (C2:C20 [3] 50))
The formula filters rows where column A is not equal to 5 (<>), column B is greater than or equal to 10 (>=), and column C is less than 50 (<).