Skip to main content



Comparison Functions

Return values based on logical operations.

Comparison FunctionDescription
AllAreFalseThe AllAreFalse function returns true if all of the provided conditions is false. Otherwise false.
AllAreTrueReturns true if all of the provided conditions are true. Otherwise false.
AnyAreFalseThe AnyAreFalse function returns true if any of the provided conditions is false. Otherwise false.
AnyAreTrueReturns true if any of the provided conditions are true. Otherwise false.
EqualToReturns true if two expressions are equal.
GreaterThanReturns true if the first expression is greater than the second expression.
GreaterThanOrEqualReturns true if the first expression is greater than or equal to the second expression.
IfThe If function returns one of two values, depending on a given condition.
IfCaseThe IfCase function compares a test value against a list of values, returning the result from the first matching pair.
IfChainThe IfChain function returns the return value from the first true condition in a list.
InstrThe Instr function returns the position of the first occurrence of one string within another string.
IsBetweenReturns true if a value is equal to or between two boundary values.
IsClassificationReturns true the given field meets the criteria to belong to the given classification.
IsMatchDetermines if a given value is found in a list of values.
IsNotNullOrEmptyThe IsNotNullOrEmpty function returns true if a field is not null or empty.
IsNullThe IsNull function returns true if a field is null.
IsNullOrEmptyThe IsNullOrEmpty function returns true if a field is null or empty.
IsNumericReturns true if a value is or can be converted to a number without error.
LargestReturns the largest value in a list of values.
LessThanReturns true if the first expression is less than the second expression.
LessThanOrEqualReturns true if the first expression is less than or equal to the second expression.
NoneAreFalseThe NoneAreFalse function returns true if none of the provided conditions is false. Otherwise false.
NoneAreTrueThe NoneAreTrue function returns true if none of the provided conditions is true. Otherwise false.
NotEqualToReturn true if two expressions are not equal.
NotEqualToReturn true if two expressions are not equal.
NumberOfFalseThe NumberOfFalse function returns the number of provided conditions that evaluate as false.
NumberOfTrueThe NumberOfTrue function returns the number of provided conditions that evaluate as true.
NumFracDigitsReturns the number of digits in a given number that appear to the right of the decimal point, not counting trailing zeros.
NumIntDigitsReturns the number of digits in a given number that appear to the left of the decimal point, not counting preceding zeros.
SmallestReturns the smallest value from a list of values.