Complete the formula to check if the value in column A is greater than 10.
=IF(A2 [1] 10, "Yes", "No")
The formula checks if the value in cell A2 is greater than 10. The correct operator is >.
Complete the formula to check if the value in column B is equal to the value in column C.
=IF(B2 [1] C2, "Match", "No Match")
The formula compares if B2 equals C2. The correct operator is =.
Fix the error in the formula to check if the value in column D is less than or equal to 100.
=IF(D2 [1] 100, "OK", "Check")
The correct operator for 'less than or equal to' is <=. The operator '==' is not valid in Google Sheets formulas.
Fill both blanks to create a formula that checks if the value in column E is between 50 and 100 (inclusive).
=IF(AND(E2 [1] 50, E2 [2] 100), "Valid", "Invalid")
The formula checks if E2 is greater than or equal to 50 and less than or equal to 100. So the first operator is >= and the second is <=.
Fill all three blanks to create a formula that returns "Pass" if the value in column F is greater than 70 and the value in column G is less than 50, otherwise "Fail".
=IF(AND(F2 [1] 70, G2 [2] 50), "[3]", "Fail")
The formula checks if F2 is greater than 70 and G2 is less than 50. If both are true, it returns "Pass". So the first operator is >, the second is <, and the text to return is Pass.