Complete the formula to check if a score in cell A1 is greater than 50.
=IF(A1 [1] 50, "Pass", "Fail")
The formula checks if the value in A1 is greater than 50. If true, it returns "Pass", otherwise "Fail".
Complete the nested IF formula to assign grades: if score in B2 is greater than 80, return "A", else "B".
=IF(B2 [1] 80, "A", "B")
The formula checks if the score in B2 is greater than 80. If yes, it returns "A", otherwise "B".
Fix the error in this nested IF formula to assign "High", "Medium", or "Low" based on value in C3.
=IF(C3 > 70, "High", IF(C3 [1] 40, "Medium", "Low"))
The second IF checks if C3 is greater than or equal to 40 to assign "Medium"; otherwise, it assigns "Low".
Fill both blanks to complete the nested IF formula that assigns "Excellent", "Good", or "Needs Improvement" based on D4.
=IF(D4 [1] 90, "Excellent", IF(D4 [2] 60, "Good", "Needs Improvement"))
The first condition checks if D4 is greater than or equal to 90 for "Excellent". The second checks if D4 is greater than 60 for "Good"; otherwise, "Needs Improvement".
Fill all three blanks to complete the nested IF formula that assigns "Pass", "Retake", or "Fail" based on E5.
=IF(E5 [1] 70, "Pass", IF(E5 [2] 50, "Retake", IF(E5 [3] 30, "Fail", "Check")))
The formula checks if E5 is greater than or equal to 70 for "Pass". Then if E5 is greater than or equal to 50 for "Retake". Then if E5 is less than 30 for "Fail". Otherwise, it returns "Check".