Skip to main content



Comparison Templates

Comparison functions evaluate to Boolean by comparing values to the left and right of the operator.

FunctionTemplate formatReturn type
is among<field> is among <value>, <value>, [add value] *List of values of same data type as left side of comparisonBoolean
is not among<field> is not among <value>, <value>, [add value] *List of values of same data type as left side of comparisonBoolean
is at least<numeric> is at least <numeric expression>Boolean
is at most<numeric> is at most <numeric expression>Boolean
is between<date or numeric> is between <date or numeric expression> and <date or numeric expression>Boolean
is not betwee n<date or numeric> is not between <date or numeric expression> and <date numeric expression>Boolean
is equal to<Field> is equal to <value> *value of same data type as left side of comparisonBoolean
is Not Null<field> is not NULLBoolean
is NULL<field> is NULLBoolean
is not empty<field> is not emptyBoolean
is a number<value> is a numbe rBoolean
is greater than<numeric> is greater than <numeric expression>Boolean
is greater than or equal to<numeric> is greater thanor equal to <numericexpression>Boolean
is less than<numeric> is less than<numeric expression>Boolean
is less than or equal to<numeric> is less than orequal to <numericexpression>Boolean
is after<date> is after <dateexpression>Boolean
is on or after<date> is on or after <dateexpression>Boolean
is not after<date> is not after <dateexpression>Boolean
is before<date> is before <dateexpression>Boolean
is not before<date> is not before <dateexpression>Boolean
is on or before<date> is on or before<date expression>Boolean
is null or empty<field> is null or emptyBoolean
is not null or empty<field> is not null or emptyBoolean
is TRUE<Boolean> is TRUEBoolean
is FALSE< Boolean> is FALSEBoolean