Complete the formula to return "Pass" if the score is 50 or more, otherwise "Fail".
=IFS(A1 [1] 50, "Pass", TRUE, "Fail")
The IFS function checks if the value in A1 is greater than or equal to 50 to return "Pass". Otherwise, it returns "Fail".
Complete the formula to return "Excellent" if score is 90 or more, "Good" if 70 or more, otherwise "Needs Improvement".
=IFS(A1 [1] 90, "Excellent", A1 [1] 70, "Good", TRUE, "Needs Improvement")
The formula checks if A1 is at least 90 for "Excellent", then at least 70 for "Good". Otherwise, it returns "Needs Improvement".
Fix the error in the formula to correctly assign grades: "A" for 90+, "B" for 80+, "C" for 70+, else "F".
=IFS(A1 [1] 90, "A", A1 [1] 80, "B", A1 [1] 70, "C", TRUE, "F")
Using '>=' ensures the formula checks if the score meets or exceeds each grade threshold correctly.
Fill both blanks to create a formula that returns "Low" if A1 is less than 50, "Medium" if between 50 and 80, else "High".
=IFS(A1 [1] 50, "Low", A1 [2] 80, "Medium", TRUE, "High")
The first condition checks if A1 is less than 50 for "Low". The second checks if A1 is less than or equal to 80 for "Medium". Otherwise, it returns "High".
Fill all three blanks to create a formula that returns "Fail" if score < 50, "Pass" if score >= 50 and < 75, else "Distinction".
=IFS(A1 [1] 50, "Fail", AND(A1 [2] 50, A1 [3] 75), "Pass", TRUE, "Distinction")
The formula checks if A1 is less than 50 for "Fail". Then if A1 is at least 50 and less than 75 for "Pass". Otherwise, it returns "Distinction".