Reference Updated April 8, 2026

NOT

Category: Logical functions

Overview

DescriptionInverts the input values with the logical NOT operation. If the input is true (non-zero), false (0) is returned, and true (1) otherwise. Use when you want to invert an existing logical condition so true becomes false and false becomes true.
SyntaxNOT('Node')
ParametersNode: Input node, specified using the node name in single quotes (e.g. 'Profit').

Examples

Typical use

This example shows that NOT turns non-zero values into 0 and turns 0 into 1.

Input node: A

YearValue
2025400
20260
2027850
2028500

Formula: NOT('A')

Year→ NOT Result
20250
20261
20270
20280

FunctionWhen to use instead
TRUEWhen you need a constant true condition instead of inverting an existing logical result.
IS_NAWhen you want to detect undefined values instead of inverting true and false results.
Was this page helpful?