Skip to content

And

aggregating category: logical no `||`

Boolean AND across all parameters or all available inputs.

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

Parameters

Noperands Optional — accepts: field, BOOLEAN

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

Input type

  • BOOLEAN

Output type

  • BOOLEAN

Requires

  • At least two inputs are available.

Examples

AND all available inputs

And()

AND of static booleans

And(TRUE, FALSE)

AND of field references

And(:BooleanValue1, :BooleanValue2)

See also

Or, Not