Min()

Home   Back   Next  

Working with Formulas > Functions Used in Formulas > List Functions > Min()

 

MIN() returns the minimum value in the specified list. The input values may be any valid type except Boolean, provided they are all of compatible types, such as the numeric, double and integer types.

 

 

Function Format

 

MIN(value1 [, value2, value3, ...]) 

 

 

Return Value

 

MIN() returns a value that is compatible with the type of the input values 

 

 

Examples

 

MIN(3, 1, 4, 2) = 1 

 

MIN(-3, 1, -4, 2) = -4 

 

MIN(3, 1, MIN(2, 5), 2) = 1 

 

MIN("B", "D", "A", "C") = "A" 

 

MIN(DATE(2007, 12, 25), DATE(2007, 1, 1)) = the date, December 25, 2007