OR
Basic Overview
Description | Connects two inputs with the logical OR and returns true (1) if at least one of the values is true and false (0) otherwise. |
Syntax |
|
Parameter |
|
Example
Input A =
Year | Value |
---|---|
2019 | 17 |
2020 | 0 |
2021 | 0 |
2022 | 1 |
Input B =
Year | Value |
---|---|
2019 | 1 |
2020 | 0 |
2021 | 1500 |
2022 | 0 |
Output OR('A','B') =
Year | Value |
---|---|
2019 | 1 |
2020 | 0 |
2021 | 1 |
2022 | 1 |