OR
Returns true if any of multiple conditions are true, otherwise returns false
OR( condition 1
, [condition 2...]
)
Returns true
if any of the conditions
are true
, otherwise returns false
Arguments
Argument | Description |
| Boolean expression to test |
| Optional: additional conditional expressions |
Output
Outputs true
if any condition
is true. Otherwise outputs false
.
Example
Last updated