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
Name | Type | Required | Description |
---|---|---|---|
series | dynamic | ✔️ | 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
s1 | series_sum |
---|---|
[1,2,3,4] | 10 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.