SERIESSUM Function Explained
The SERIESSUM
Function in Microsoft Excel calculates the sum of a power series based on the given parameters. It takes three arguments: x
, n
, and m
, and returns the sum of the series from n = 0
to m
of the expression (x^n)/n!
.
SERIESSUM Function Syntax
SERIESSUM(x, n, m, [coefficients])
- x: The x-values of the series. These can be numbers, cell references, or ranges.
- n: The power to which the x-values are raised.
- m: The number of terms in the series.
- coefficients: (Optional) The coefficients by which the x-values are multiplied.