max(a, b, c, d, ...), min(a, b, c, d, ...)

max(a, b, c, d, ...)

Returns the largest of the arguments.

For example,  

max(3,5,7,4.8,-1) = 7

 

min(a, b, c, d, ...)

Returns the smallest of the arguments.

For example,  

min(3,5,7,4.8,-1) = -1

 

See Also:

Math and Logical Functions