Returns the smallest number in a single list, or the smaller of two numbers or number lists.
@Min( number1 )
@Min( number1 ; number2 )
number1
Number or number list.
number2
Number or number list.
minNumber
(Single parameter) Number. The smallest number in number1.
(Two parameters) Number or number list. Either number1 or number2, whichever is smaller. If the parameters are number lists, @Max returns a list that is the result of pair-wise computation on the list values.
When using this function with a number list constant, remember that the list concatenation operator takes precedence over other operators. Enclose negative numbers in parentheses.
@Min(35;100)
@Min(99:2:3;5:6:7:8)
@Min(Precinct1;Precinct2)
@Min(AreaAPopulation;AreaBPopulation) - DistrictPopulation
@Min((-3.5):(-35):100;(-2):45:54)
@Min(99 : 2 : 3)