series_sum()

Learn how to use the series_sum() function to calculate the sum of series elements.

Calculates the sum of series elements.

Syntax

series_sum(series)

Parameters

NameTypeRequiredDescription
seriesdynamic✔️Array of numeric values.

Returns

Returns a double type value with the sum of the elements of the array.

Example

print arr=dynamic([1,2,3,4]) 
| extend series_sum=series_sum(arr)

Output

s1series_sum
[1,2,3,4]10