MAX

function MAX(args: number | string | [] | ApiRange = null): number

Description

Returns the largest value in a set of values. Ignores logical values and text.

Parameters

argsnumber | string | [] | ApiRangedefault: null

Up to 255 numeric values for which the largest number will be returned. The first argument is required, subsequent arguments are optional.

Returns

number

Try It


const oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
var max = oFunction.MAX(123, 197, 46, 354, 67, 456);
oWorksheet.GetRange("C1").SetValue(max);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).