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
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
Examples
|
Formula |
Result |
|
=SERIESSUM(A2;B2;C2;D2:D3) |
5 |
|
=SERIESSUM(A3;B3;C3;D3:D5) |
16 |
|
=SERIESSUM(A4;B4;C4;D3:D4) |
-13 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
Similar Functions