You are here:
Comparison Operators
Comparison operators return true or false.
CRM Analytics supports the following comparison operators.
| Operator | Name | Description |
|---|---|---|
| == | Equals | True if the operands are equal. String comparisons that use the equals operator are case-sensitive. Example predicate expressions:
|
| != | Not equals | True if the operands are not equal. String comparisons that use the not equals operator are case-sensitive. Example predicate expression:
|
| < | Less than | True if the left operand is less than the right operand. Example predicate expression:
|
| <= | Less or equal | True if the left operand is less than or equal to the right operand. |
| > | Greater than | True if the left operand is greater than the right operand. |
| >= | Greater or equal | True if the left operand is greater than or equal to the right operand. |
| in | Multivalue list filter | True if the left operand exists in the list of strings substituted for a multivalue picklist (field value). Example predicate expression:
In this example, Note Comma-separated lists are not supported within the square-bracket
construct. |
You can use the <, <=, >, and >= operators with measure columns only.

