AND
Description
Returns TRUE if all provided conditions are TRUE; otherwise, returns FALSE.
Syntax
AND(...logical) -> Boolean
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| ...logical | Boolean | Yes | The 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.