Function MIN
Returns the smallest of given numbers
Usage
MIN(numbers...)
Parameters
| numbers | 
 (Required) A number or a list of numbers  | 
| ... | 
 You can use as many numbers and lists of numbers as you want (at least 1). See examples below  | 
Examples
Reminders
A text containing digits is not handled as a number. To have an actual number:
- use the 
@NUMBER_QUESTIONto set the variable - write a numeric value directly in the code without quotes, ex: 
age >= 18 - use a function which converts to a number: 
NUMBER(text_containing_numbers) - use a function which returns a number: 
FIND("world", "hello everybody")