0
0
Excelspreadsheet~20 mins

NOT function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
NOT Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:00remaining
Output of NOT function with TRUE input
What is the output of the formula =NOT(TRUE) in Excel?
Excel
=NOT(TRUE)
A0
BFALSE
CTRUE
D1
Attempts:
2 left
💡 Hint

The NOT function reverses the logical value.

📊 Formula Result
intermediate
1:00remaining
NOT function with a logical expression
What is the result of =NOT(5 > 10) in Excel?
Excel
=NOT(5 > 10)
ATRUE
BFALSE
C5
D10
Attempts:
2 left
💡 Hint

Check the logical expression inside the NOT function first.

Function Choice
advanced
1:30remaining
Choose the formula that returns TRUE only if A1 is NOT empty
Which formula returns TRUE only when cell A1 is NOT empty?
A=NOT(A1)
B=NOT(A1="")
C=ISBLANK(NOT(A1))
D=NOT(ISBLANK(A1))
Attempts:
2 left
💡 Hint

Think about how to check if a cell is empty and then reverse that.

📊 Formula Result
advanced
1:00remaining
Output of NOT with a number input
What is the output of =NOT(0) in Excel?
Excel
=NOT(0)
ATRUE
BFALSE
C0
D#VALUE!
Attempts:
2 left
💡 Hint

Remember how Excel treats 0 and non-zero numbers in logical functions.

🎯 Scenario
expert
2:00remaining
Using NOT to filter data in a formula
You want to count how many cells in range B1:B10 are NOT equal to "Completed". Which formula correctly does this?
A=COUNTIF(B1:B10, "Completed") - NOT(TRUE)
B=COUNTIF(B1:B10, NOT("Completed"))
C=COUNTIF(B1:B10, "<>Completed")
D=COUNTIF(B1:B10, "=NOT(Completed)")
Attempts:
2 left
💡 Hint

Think about how to write a condition for 'not equal to' in COUNTIF.