AND

Description

Returns TRUE if all provided conditions are TRUE; otherwise, returns FALSE.

Syntax

AND(...logical) -> Boolean

Parameters

ParameterData TypeRequiredDescription
...logicalBooleanYesThe logical conditions to evaluate.

Examples

AND(5 > 3, 10 == 10)
-- Returns TRUE.
AND(5 < 3, 10 == 10)
-- Returns FALSE.

Tips

  • It functions the same as the && operator.