0
0
Excelspreadsheet~10 mins

NOT function in Excel - Interactive Code Practice

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

Complete the formula to return TRUE if A1 is FALSE.

Excel
=NOT([1])
Drag options to blanks, or click blank then click option'
AA1
B1
CFALSE
DTRUE
Attempts:
3 left
💡 Hint
Common Mistakes
Putting TRUE or FALSE directly inside NOT instead of a cell reference.
Leaving the parentheses empty.
2fill in blank
medium

Complete the formula to return TRUE if B2 is NOT equal to 10.

Excel
=NOT(B2 [1] 10)
Drag options to blanks, or click blank then click option'
A>
B<
C=
D<>
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<>' instead of '=' inside the formula.
Confusing greater than or less than operators.
3fill in blank
hard

Fix the error in the formula to correctly return TRUE if C3 is NOT TRUE.

Excel
=NOT([1])
Drag options to blanks, or click blank then click option'
AC3=TRUE
BTRUE
CNOT(C3)
DC3
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'C3=TRUE' inside NOT causes a logical test that returns TRUE or FALSE, but is redundant.
Nesting NOT inside NOT causes double negation.
4fill in blank
hard

Fill both blanks to create a formula that returns TRUE if D4 is NOT blank.

Excel
=NOT(D4 [1] [2])
Drag options to blanks, or click blank then click option'
A=
B<>
C""
D0
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<>' with 0 instead of empty quotes.
Forgetting to put quotes around the empty string.
5fill in blank
hard

Fill both blanks to create a formula that returns TRUE if E5 is NOT greater than 100.

Excel
=NOT(E5 [1] [2])
Drag options to blanks, or click blank then click option'
A>
B<=
C100
D50
Attempts:
3 left
💡 Hint
Common Mistakes
Using '<=' inside the parentheses instead of '>'.