Boolean, comparison, and math operators
You can use a variety of Boolean, comparison, and math operators to build an expression.
Boolean operators
Comparison operators
The following comparison operators are available. They are listed in their order of precedence.
*
*
This is available only in the Simple Event component.
*
*
*
*
Math operators
The following math operators are available. They are listed in their order of precedence.
*
*
*
*
*
*
Order of operations
This is the order of precedence for operators.
*
*
*
*
If you use a comparison in an expression that uses a Boolean operator, you must enclose the operand that follows the Boolean operator in parentheses whenever the result of the calculation would be ambiguous if you do not use parentheses. For example, you would need parentheses to clarify whether you want trans.frequency < 3 AND trans.deposit > 2 * (prev.deposit + 50) or trans.frequency < 3 AND trans.deposit > (2 * prev.deposit) + 50.