ListGT Function

Description:
Those members of the list that are greater than the compared value based on a UNICODE comparison.
Returns:
Any*
Parameters:
Parameter
Data Type
Description
1
Any*
The list.
2
Any
The compare value.
Examples:
When using functions inside a field, remember the field brackets:
{ListGT(InterestRatesList, BaseRate)}
Expression
Result
ListGT( List("a","b","a","c","c"), "b" )
List("c","c")
ListGT( List("a","b","a","c","c"), "c" )
List()

Related content