Complete the formula to check if A1 is greater than 10.
=IF(A1 [1] 10, "Yes", "No")
The IF function tests if A1 is greater than 10 using the '>' operator.
Complete the formula to return TRUE if B2 equals 5.
=IF(B2 [1] 5, TRUE, FALSE)
The '=' operator checks if B2 is exactly 5.
Fix the error in the formula to check if C3 is less than or equal to 20.
=IF(C3 [1] 20, "OK", "Check")
The correct operator for 'less than or equal to' is '<=' in Google Sheets.
Fill both blanks to create a formula that returns "Pass" if D4 is between 50 and 100 (inclusive).
=IF(AND(D4 [1] 50, D4 [2] 100), "Pass", "Fail")
The formula checks if D4 is greater than or equal to 50 and less than or equal to 100.
Fill all three blanks to create a formula that returns "Good" if E5 is greater than 70, "Average" if equal to 70, and "Poor" if less than 70.
=IF(E5 [1] 70, "Good", IF(E5 [2] 70, "Average", IF(E5 [3] 70, "Poor", "Poor")))
The formula first checks if E5 is greater than 70, then if equal to 70, else it is less than 70.