Min
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Min
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given a list of numbers, returns the smallest number in the list.
Function signature
MIN(values: Array) => Number
Parameter | Description |
---|---|
Values | List of numeric values |
Examples
Formula | Return value |
---|---|
MIN([100, 3, 20]) | 3 |
MIN([]) | null |
Was this article helpful?