Max
The Max function returns the largest value from a list of the arguments or ranges.
One or more arguments are required.
Text that cannot be converted to a quantity is ignored.
Usage:
= Max(<argument(s)>[, ...])
Examples:
/* returns 3 */
= Max(1, 2, 3, "hello", true);
/* returns 5.5 */
= Max(1, 2, 3, "5.5", false);