VAR

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

Description

Estimates variance based on a sample (ignores logical values and text in the sample).

Parameters

argsnumber | string | ApiRange | number[]default: null

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

Returns

number

Try It



var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
var result = oFunction.VAR(1, 4, 2, 6, 0, 1, 3, 8, 0, 0, 6, 10, 0, 0, 7, 12)
oWorksheet.GetRange("B2").SetValue(result);


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).