AND
Overview
Description | Connects two inputs with the logical AND and returns true (1) if both values are true and false (0) otherwise. |
Syntax |
|
Parameter | Node: Input node, specified using the node name in single quotes (e.g. |
Example
Input node A
Year | Value |
|---|---|
2019 | 17 |
2020 | 0 |
2021 | 0 |
2022 | 1 |
Input node B
Year | Value |
|---|---|
2019 | 1 |
2020 | 0 |
2021 | 1500 |
2022 | 12 |
Output AND('A','B')
Year | Value |
|---|---|
2019 | 1 |
2020 | 0 |
2021 | 0 |
2022 | 1 |