0
0
Excelspreadsheet~5 mins

NOT function in Excel - Step-by-Step Guide

Choose your learning style9 modes available
Introduction
The NOT function reverses the result of a logical test. If the test is TRUE, NOT returns FALSE. If the test is FALSE, NOT returns TRUE. This helps when you want to check the opposite of a condition.
When you want to find cells that do NOT meet a certain condition, like values not equal to 10.
When you want to filter data to exclude certain items, such as excluding completed tasks.
When you want to create a formula that triggers an action only if a condition is false.
When you want to combine with other logical functions to build complex conditions.
When you want to highlight or count items that do not match a specific rule.
Steps
Step 1: Click
- a blank cell where you want the result
The cell is selected and ready for input
Step 2: Type
- the formula bar
The formula starts appearing in the cell
💡 Start with an equal sign (=) to begin the formula
Step 3: Enter
- the formula: =NOT(logical_test)
The formula is entered, showing TRUE or FALSE based on the test
Step 4: Replace
- logical_test inside the formula
The formula checks your specific condition
💡 For example, use =NOT(A1=10) to check if A1 is not 10
Step 5: Press
- Enter key
The cell shows TRUE if the condition is false, or FALSE if the condition is true
Before vs After
Before
Cell A1 contains 10, formula =NOT(A1=10) is not entered
After
Cell with formula =NOT(A1=10) shows FALSE because A1 equals 10
Settings Reference
logical_test
📍 inside the NOT function parentheses
The condition you want to reverse
Default: none
Common Mistakes
Using NOT without a logical test, like =NOT()
NOT needs a condition to check; empty parentheses cause an error
Always include a logical test inside the parentheses, e.g., =NOT(A1=5)
Confusing NOT with other functions like IF
NOT only reverses TRUE/FALSE; it does not perform actions like IF
Use NOT to reverse conditions, and IF to decide actions based on conditions
Summary
The NOT function reverses TRUE to FALSE and FALSE to TRUE.
Use NOT to check the opposite of any condition.
Always include a logical test inside the NOT function.