Complete the formula to check if A1 is greater than 10.
=IF(A1 [1] 10, "Yes", "No")
The formula checks if the value in cell A1 is greater than 10 using the > operator.
Complete the nested IF formula to return "High" if B1 > 80, else "Low".
=IF(B1 [1] 80, "High", "Low")
The formula returns "High" if the value in B1 is greater than 80, otherwise "Low".
Fix the error in the nested IF formula to check if C1 is between 50 and 100.
=IF(C1 [1] 50, IF(C1 [2] 100, "Yes", "No"), "No")
The formula checks if C1 is greater than or equal to 50 and less than or equal to 100 using >= and <= operators.
Fill both blanks to create a nested IF that returns "Pass" if D1 >= 60, "Fail" otherwise.
=IF(D1 [1] 60, "Pass", IF(D1 [2] 60, "Fail", "Fail"))
The first blank uses >= to check if D1 is at least 60. The second blank uses < to check if D1 is less than 60, returning "Fail" in both other cases.
Fill all three blanks to create a nested IF that returns "Excellent" if E1 > 90, "Good" if E1 > 75, else "Needs Improvement".
=IF(E1 [1] 90, "Excellent", IF(E1 [2] 75, "Good", "[3]"))
The first blank uses > to check if E1 is greater than 90. The second blank uses > to check if E1 is greater than 75. The third blank fills the else text "Needs Improvement".