Excel
NOT function in Excel
Reverses the logic of its argument
=NOT(logical)NOT syntax and parameters
One argument, one required.
- logicalbooleanRequired
A value or expression that can be evaluated to TRUE or FALSE.
NOT examples
Formulas you'll actually reuse.
TRUE when a ship date has been filled in:
=NOT(ISBLANK(E2))Result
TRUEAmount for every region except West, zero otherwise:
=IF(NOT(A2 = "West"), D2, 0)Result
0
NOT in Google Sheets
Same name — your formula ports as-is.
Try NOT in the playground
Edit the example — nothing to install.
Preloaded with the NOT formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Excel gets this done.
- ANDReturns TRUE if all of its arguments are TRUELogicalGoogle Sheets
- BYCOLApplies a LAMBDA to each column and returns an array of the resultsLogicalGoogle Sheets
- BYROWApplies a LAMBDA to each row and returns an array of the resultsLogicalGoogle Sheets
- FALSEReturns the logical value FALSELogicalGoogle Sheets
- IFSpecifies a logical test to performLogicalGoogle Sheets
- IFERRORReturns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formulaLogicalGoogle Sheets