Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the sum of series elements.
series_sum(
series)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | Array of numeric values. |
Returns a double type value with the sum of the elements of the array.
print arr=dynamic([1,2,3,4])
| extend series_sum=series_sum(arr)
Output
s1 | series_sum |
---|---|
[1,2,3,4] | 10 |