Max
The Max function returns the maximum value among a series of values.
Definition
Max(v1, [v2, v3, ..., vn])Parameters
| Name | Description | Data type |
|---|---|---|
| v1...vn | List of provided values, all values must be numbers. The function is limited to a maximum of 100 values. | numeric |
Example
The following example obtains the largest value from the following list of numbers: 2, -5, 4, 10:
Max(2, -5, 4, 10)The result is 10 (numeric value).