0
0
Google Sheetsspreadsheet~10 mins

Why logical functions handle conditions in Google Sheets - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to check if A1 is greater than 10.

Google Sheets
=IF(A1 [1] 10, "Yes", "No")
Drag options to blanks, or click blank then click option'
A>
B<
C=
D<=
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<' instead of '>' will check the wrong condition.
Using '=' will check if A1 equals 10, not greater.
2fill in blank
medium

Complete the formula to return TRUE if B2 equals 5.

Google Sheets
=IF(B2 [1] 5, TRUE, FALSE)
Drag options to blanks, or click blank then click option'
A=
B>=
C<
D>
Attempts:
3 left
💡 Hint
Common Mistakes
Using '>' or '<' checks for greater or less, not equality.
Using '>=' checks for greater or equal, not exact equality.
3fill in blank
hard

Fix the error in the formula to check if C3 is less than or equal to 20.

Google Sheets
=IF(C3 [1] 20, "OK", "Check")
Drag options to blanks, or click blank then click option'
A>
B<
C<=
D==
Attempts:
3 left
💡 Hint
Common Mistakes
Using '==' causes an error because Google Sheets uses '=' for equality.
Using '<' only checks less than, not less than or equal.
4fill in blank
hard

Fill both blanks to create a formula that returns "Pass" if D4 is between 50 and 100 (inclusive).

Google Sheets
=IF(AND(D4 [1] 50, D4 [2] 100), "Pass", "Fail")
Drag options to blanks, or click blank then click option'
A>=
B<
C<=
D>
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<' instead of '<=' excludes 100 from the range.
Using '>' instead of '>=' excludes 50 from the range.
5fill in blank
hard

Fill all three blanks to create a formula that returns "Good" if E5 is greater than 70, "Average" if equal to 70, and "Poor" if less than 70.

Google Sheets
=IF(E5 [1] 70, "Good", IF(E5 [2] 70, "Average", IF(E5 [3] 70, "Poor", "Poor")))
Drag options to blanks, or click blank then click option'
A>
B=
C<
D>=
Attempts:
3 left
💡 Hint
Common Mistakes
Using '>=' instead of '>' changes the logic.
Using '=' in the first condition causes wrong results.