NOT
Basic 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 | NOT(Node) |
Parameter |
|
Example
Input A =
Year | Value |
---|---|
2019 | 400 |
2020 | 0 |
2021 | 850 |
2022 | 500 |
Output NOT('A') =
Year | Value |
---|---|
2019 | 0 |
2020 | 1 |
2021 | 0 |
2022 | 0 |