You can use the following relational operators when building logical expressions.
Operator |
Meaning |
< |
Less than |
> |
Greater than |
= |
Equal to |
<= |
Less than or equal to |
>= |
Greater than or equal to |
<> or ~= |
Not equal to. |
These are especially useful in combination with the IF(x, true, false) function (see IF(x, true, false)).
If you combine relational operators with arithmetical operators in an expression, Ability performs the arithmetical operations before evaluating the relational operators.
See also: