Skip to main content

MAXA

Returns the largest value in a set of values. Does not ignore logical values and text.

Syntax

expression.MAXA(args);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
argsRequirednumber | string | boolean | (number | string | boolean)[] | ApiRange | ApiNameUp to 255 values (number, text, logical value) for which the largest value will be returned. The first argument is required, subsequent arguments are optional. Arguments can be numbers, logical values and text representations of numbers, names, ranges, or arrays.

Returns

number

Example

Return the largest value in a set of values. Does not ignore logical values and text in a spreadsheet.

// How to get a maximum from a list including text and logical values in a spreadsheet.

// Use a function to find a maximum from a list of objects in a spreadsheet.

const worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("A1:A5").GetValue();
let func = Api.WorksheetFunction;
let maxA = func.MAX(23, 45, true, "text", 0.89);
worksheet.GetRange("C1").SetValue(maxA);