MAX

 ──MAX(number─┬───────────┬─)───────
                │┌─────────┐│

                │         ││
                └┴─,number─┴┘

MAX returns the largest number from the list specified, formatted according to the current setting of NUMERIC DIGITS. You can specify up to 20 numbers and can nest calls to MAX if more arguments are needed.

Here are some examples:

MAX(12,6,7,9)                              ->    12
MAX(17.3,19,17.03)                         ->    19
MAX(-7,-3,-4.3)                            ->    -3
MAX(1,2,3,4,5,6,7,8,9,MAX(10,11,12,13))    ->    13


[Back: LINES]
[Next: MIN]