SERIESSUM

function SERIESSUM(
  arg1: any = null,
  arg2: any = null,
  arg3: any = null,
  arg4: any = null,
): number | string | boolean

Description

Returns the sum of a power series based on the formula.

Parameters

arg1anydefault: null

Is the input value to the power series.

arg2anydefault: null

Is the initial power to which you want to raise x.

arg3anydefault: null

Is the step by which to increase n for each term in the series.

arg4anydefault: null

Is a set of coefficients by which each successive power of x is multiplied.

Returns

number | string | boolean

Try It

var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.SERIESSUM(5, 2, 1, 3));

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