Skip to main content

Logical Functions

Logical functions allow you to combine and evaluate boolean values.


NOT(A)

Returns the logical negation of A.

NOT( checked )

AND(A, B, ...)

Returns true if all provided values are true.

AND( check1, check2, check3 )

OR(A, B, ...)

Returns true if at least one provided value is true.

OR( check1, check2, check3 )

Was this article helpful?

Yes
No