AND
Returns true if all of the given expressions/values are true, and false otherwise
Syntax
=AND(expr)
=AND(expr1, expr2, ..., exprN)
Arguments
| Argument | Type | Description | 
|---|---|---|
| exprN | Boolean | The value to use | 
Examples
=AND(false, true) → false
=AND(true, true) → true
=AND(1 = 1, 2 = 2) → true
=AND(@"Property 1" = 1, @"Property 2" >= 4) → true
Checks if the shape data property "Property 1" is equal to 1 and "Property 2" is greater than or equal to 4
Updated over 1 year ago