Skip to main content
Skip table of contents

Data Comparison Operators

A comparison operator is the test to perform against the selected field and the value you provide. Not all operators work with every field type. The 'LIKE' and 'NOT LIKE' operators compare a Text field to a text string. These operators require a string value that includes a percent symbol ( % ) to act as a wild card for searching.

The following table defines each operator and the supported field types:

OperatorType(s)Description
INFloat, Number, Date, TextIs the field included in the list of values? This is like creating several OR conditions with one condition.
NOT INFloat, Number, Date, TextIs the field not included in the list of values? This is like creating several AND NOT conditions with one condition.
=Float, Number, Date, TextIs the field equal to the value?
!=Float, Number, Date, TextIs the field not equal to the value?
>Float, Number, DateIs the field greater than the value?
Float, Number, DateIs the field less than the value?
>=Float, Number, DateIs the field greater than or equal to the value?
=Float, Number, DateIs the field less than or equal to the value?
LIKETextIs the field like the text string? Contains: %string% Begins With: string% Ends With: %string
NOT LIKETextIs the field not like the text string? Does Not Contain: %string% Does Not Begin With: string% Does Not End With: %string
IS NULLFloat, Number, Text, DateIs the field NULL, or does it not exist?
IS NOT NULLFloat, Number, Text, DateIs the field not NULL, or does it exist?
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.