SERIESSUM function - Zoho Sheet - Help Guide

SERIESSUM

Returns the sum of the power series based on the given parameters,  i.e. SERIES(x; n; m; a) = a 1 x n +a 2 x (n+m) +...+a i x (n+(i-1)m) .

 

Syntax

 

SERIESSUM(x; n; m; a)

x: The input value to the power series. Eg., A3

n: The initial power that you want to raise x to in the power series. Eg., B3

m: The increment to increase the power of n to. Eg., C3

a: Array or range containing the coefficients of the power series. Eg., D3:D5

 

Examples  

   

Formula

Result

=SERIESSUM(A2;B2;C2;D2:D3)

5

=SERIESSUM(A3;B3;C3;D3:D5)

16

=SERIESSUM(A4;B4;C4;D3:D4)

-13

 

Get a hands-on experience of the function in the embedded range below.



Possible Errors

 

Errors

Meaning

#N/A!

  • The function could not find the value it was asked to look for. Commonly occurs in VLOOKUP and similar functions.

#NAME!

  • The function name is incorrect or invalid.

  • The given defined name (if any) is invalid.

  • There is a typo in the defined name used in the function.

  • Double quotes are missing for text values in the function.

  • Colon missing in a cell range reference.

#VALUE!

  • The given argument's data type is incorrect or invalid.
    For example, the function =DATE(A1:A3) will return a #VALUE error when a text value is present in the range.

#REF!

  • The given cell reference is incorrect or invalid. This error may occur when a cell/range has been deleted, moved, or pasted over.

 

Similar Functions