Complete the formula to return "Pass" if the score in A1 is 50 or more, otherwise "Fail".
=IF(A1 [1] 50, "Pass", "Fail")
The IF function checks if the score in A1 is greater than or equal to 50. If true, it returns "Pass"; otherwise, "Fail".
Complete the formula to return "Yes" if cell B2 is empty, otherwise "No".
=IF(B2 [1] "", "Yes", "No")
The formula checks if B2 equals an empty string "". If yes, it returns "Yes"; otherwise, "No".
Fix the error in the formula to correctly return "High" if C3 is greater than 100, else "Low".
=IF(C3 [1] 100, "High", "Low")
The correct operator to check if C3 is greater than 100 is '>'. The operator '==' is not valid in Excel formulas.
Fill both blanks to create a formula that returns "Adult" if age in D4 is 18 or more, else "Minor".
=IF(D4 [1] 18, [2], "Minor")
The formula checks if D4 is greater than or equal to 18. If true, it returns "Adult"; otherwise, "Minor".
Fill all four blanks to create a formula that returns the uppercase name if score in E5 is above 75, else returns the name as is.
=IF(E5 [1] 75, [2]([3]), [4])
The formula checks if E5 is greater than 75. If true, it converts the name in F5 to uppercase using UPPER(F5). Otherwise, it returns the name as is from F5.