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