Logical Operators
Use logical operators in expressions to test for a condition. Logical operators define Boolean expressions.
You might want to use logical operators in Filter transformations or CASE expressions. Filters test if a field or value meets some condition, such as testing if the value in a Date field falls between 2 other dates:
BETWEEN 2016-06-01 AND 2016-07-31
Operator | Meaning | Example |
|---|---|---|
AND
| Test whether 2 conditions are true. | |
OR
| Test if either of 2 conditions are true. | |
NOT
| Reverses the value of other operators. |
|