ListLT Function
Description:
Those members of the list that are less 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:
{ListLT(InterestRatesList, BaseRate)}
Expression | Result |
|---|---|
ListLT( List("a","b","a","c","c"), "b" ) | List("a","a") |
ListLT( List("a","b","a","c","c"), "a" ) | List() |