Min
The Min function returns the minimum value among a series of values.
Definition
Min(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 smallest value from the following list of numbers: 2, -5, 4, 10:
Min(2, -5, 4, 10)The result is -5 (numeric value).