Max Function
Description:
The maximum value in a list.
note
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:
{Max(InterestRateComparison)}
Expression | Result |
|---|---|
Max( List(-1,0,1) ) | 1 |
Max( List("a","c","c","b") ) | "c" |