Min
The Min function returns the smallest value from a list of the arguments or ranges.
One or more arguments are required.
Text that cannot be converted to a quantity is ignored.
Usage:
= Min(<argument(s)>[, ...])
Examples:
/* returns 1 */
= Min(1, 2, 3, "hello", true);
/* returns 0 */
= Min(1, 2, 3, "hello", false);