String Fields
Operator | Description |
---|---|
is | Exact match (not case sensitive) |
is not | Anything EXCEPT exact match |
starts with | First letters of string match |
not starts with | First letters of string DO NOT match |
contains | Any letters together in the string match (example: california, fortune, therefor) |
not contains | No letters together in the string match. (reverse of "contains") |
is empty | Records that have no value (NULL) |
is not empty | Records with ANY value |
Use positive over negative operators. “Is not” filters have to search the entire data set in your instance, which can be extremely time-consuming. Positive “is” filters can leverage more effective search algorithms.
Integer Fields
Operator | Description |
---|---|
is | Exact number match ( = 0 will return both leads with 0 and NULL) |
is not | Anything EXCEPT exact number match |
between | Define two value to find everyone in between (inclusive) |
greater than | Above the specified |
less than | Less than the specified |
at least | Above the specified (inclusive) |
at most | Less than the specified (inclusive) |
is empty | Records that have no value (NULL) - zero is a number, it is not NULL |
is not empty | Records with ANY value (including zero) |
As you can see, these operators make it easy to speak Marketo-ese with fluency!
recommendation-more-help