0
0
Excelspreadsheet~5 mins

NOT function in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the NOT function do in Excel?
The NOT function reverses the logical value of its argument. If the input is TRUE, it returns FALSE; if the input is FALSE, it returns TRUE.
Click to reveal answer
beginner
Write the formula to get the opposite of TRUE using the NOT function.
=NOT(TRUE) returns FALSE.
Click to reveal answer
intermediate
How can NOT be used with a logical test like A1>10?
You can write =NOT(A1>10). It returns TRUE if A1 is NOT greater than 10, otherwise FALSE.
Click to reveal answer
beginner
What will =NOT(5=5) return?
Since 5=5 is TRUE, =NOT(5=5) returns FALSE.
Click to reveal answer
intermediate
Can the NOT function be used with non-logical values like numbers or text?
Yes, Excel treats non-zero numbers as TRUE and zero as FALSE. For example, =NOT(0) returns TRUE, and =NOT(1) returns FALSE. Text values cause an error unless they are logical TRUE or FALSE.
Click to reveal answer
What does =NOT(FALSE) return?
ATRUE
BFALSE
C0
DError
Which formula returns TRUE if cell A1 is NOT equal to 5?
A=A1=5
B=NOT(A1<>5)
C=NOT(A1>5)
D=NOT(A1=5)
What will =NOT(10>20) return?
ATRUE
BFALSE
C10
D20
If =NOT(0) is entered, what is the result?
AFALSE
BTRUE
C0
DError
Which of these is NOT a valid use of the NOT function?
AReversing a logical test result
BChecking if a number is zero
CConverting text to uppercase
DNegating TRUE or FALSE values
Explain how the NOT function works and give an example of when you might use it in a spreadsheet.
Think about how to check the opposite of a condition.
You got /4 concepts.
    Describe how Excel treats numbers when used inside the NOT function.
    Consider how logical functions interpret numbers.
    You got /4 concepts.