- Help Center
- Operations
- Logical
AND Operation
How to use the AND Operation for Computed Attributes
Definition
The AND operation allows you to test multiple conditions.
This operation will:
- Return TRUE if all of the provided arguments are logically true
- Return FALSE if any of the provided arguments are logically false
- Only FALSE and 0 are considered false
Example
AND(1, true)
Result:
TRUE
Syntax Guide
AND(logical_expression1, [logical_expression2, ...])
logical_expression1 - An expression that represents or can represent some logical value, i.e. TRUE or FALSE
logical_expression2, ... - [ OPTIONAL ] - Additional expressions