String Fields

OperatorDescription
isExact match (not case sensitive)
is notAnything EXCEPT exact match
starts withFirst letters of string match
not starts withFirst letters of string DO NOT match
containsAny letters together in the string match (example: california, fortune, therefor)
not containsNo letters together in the string match. (reverse of "contains")
is emptyRecords that have no value (NULL)
is not emptyRecords with ANY value
TIP
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

OperatorDescription
isExact number match ( = 0 will return both leads with 0 and NULL)
is notAnything EXCEPT exact number match
betweenDefine two value to find everyone in between (inclusive)
greater thanAbove the specified
less thanLess than the specified
at leastAbove the specified (inclusive)
at mostLess than the specified (inclusive)
is emptyRecords that have no value (NULL) - zero is a number, it is not NULL
is not emptyRecords with ANY value (including zero)

As you can see, these operators make it easy to speak Marketo-ese with fluency!

recommendation-more-help