AND

Returns TRUE if all conditions are true, and FALSE if at least one condition is FALSE.

Parameter List

Syntax
AND(condition1
[condition2]
)
condition1

A conditional expression that evaluates to either TRUE or FALSE. For example: 1 = 1.

[optional] condition2

A conditional expression that evaluates to either TRUE or FALSE. For example: "dog" = "cat".

Examples

AND(true, false, true) returns FALSE