Min Function
Description:
The minimum value in a list.
Note that this function is non-evaluable if the list does not contain any members.
Returns:
Any
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The list. |
Examples:
When using functions inside a field, remember the field brackets:
{Min(InterestRateComparison)}
Expression | Result |
|---|---|
Min( List(1,0,-1) ) | -1 |
Min( List("b","b","a","c","d") ) | "a" |