NOT
Overview
Description | Inverts the input values with the logical 'not' operation. If the inputs is true (non-zero), false (0) is returned, true (1) otherwise. |
Syntax |
|
Parameter | Node: Input node, specified using the node name in single quotes (e.g. |
Example
Input node: A
Year | Value |
|---|---|
2019 | 400 |
2020 | 0 |
2021 | 850 |
2022 | 500 |
Output NOT('A')
Year | Value |
|---|---|
2019 | 0 |
2020 | 1 |
2021 | 0 |
2022 | 0 |