Calculation Formulas
Back to Calculation Formulas Overview
Back to Functions Overview
Function "Min"
Min(arg1 [, arg2, ... , argN])
Function: Returns the smallest of all given Number arguments.
Return-Type: Number
Arguments:
arg1 - Type Number or Number Set: The first argument to find the minimum of.
(Further arguments are optional)
arg2 - Type Number or Number Set: The second argument to find the minimum of.
...
argN - Type Number or Number Set: The Nth argument to find the minimum of.
If any of the arguments is a set of numbers, then the minimum will be determined over all numbers in this set
(and any other arguments, if present).
Examples:
Min(13, 2)
Min(16, 29, 4)
Min(72, &VALUE; * 5)