Complete the formula to return "Pass" if the score in cell A1 is 50 or more, otherwise "Fail".
=IF(A1 [1] 50, "Pass", "Fail")
The IF function checks if the value 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 contains the text "Complete", otherwise "No".
=IF(B2 [1] "Complete", "Yes", "No")
The IF function checks if B2 is exactly equal to "Complete". If yes, it returns "Yes"; otherwise, "No".
Fix the error in the formula to 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 '>'. Using '==' causes an error in Google Sheets.
Fill both blanks to create a formula that returns "Adult" if age in D4 is 18 or more, otherwise "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 three blanks to create a formula that returns the uppercase name if E5 is not empty, otherwise "No Name".
=IF(E5 [1] "", [2](E5), [3])
The formula checks if E5 is not empty (using '<>'). If true, it converts E5 to uppercase with UPPER(). Otherwise, it returns "No Name".