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