Skip to content

Or

aggregating category: logical no `||`

Boolean OR across all parameters or all available inputs.

ORs together two or more boolean values. The values can be supplied as parameters; if no parameters are provided, all available inputs are ORed.

Parameters

Noperands Optional — accepts: field, BOOLEAN

The Nth boolean to OR. May be a field reference (:f) or a static boolean. If no parameters are given, every available input is ORed.

Input type

  • BOOLEAN

Output type

  • BOOLEAN

Requires

  • At least two inputs are available.

Examples

OR all available inputs

Or()

OR of static booleans

Or(TRUE, FALSE)

OR of field references

Or(:BooleanValue1, :BooleanValue2)

See also

And, Not