Calculation Formulas
Back to Calculation Formulas Overview
Back to Functions Overview
Function "Max"
Max(arg1 [, arg2, ... , argN])
Function: Returns the greatest of all given Number arguments.
Return-Type: Number
Arguments:
arg1 - Type Number or Number Set: The first argument to find the maximum of.
(Further arguments are optional)
arg2 - Type Number or Number Set: The second argument to find the maximum of.
...
argN - Type Number or Number Set: The Nth argument to find the maximum of.
If any of the arguments is a set of numbers, then the maximum will be determined over all numbers in this set
(and any other arguments, if present).
Examples:
Max(3, -4)
Max(17, 22, 4)
Max(82, &VALUE; * 7)