Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Switch services using the Version drop-down list. Learn more about navigation.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the sum of elements in a dynamic array.
Syntax
array_sum(array)
Learn more about syntax conventions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| array | dynamic |
✔️ | The array to sum. |
Returns
Returns a double type value with the sum of the elements of the array.
Note
If the array contains elements of non-numeric types, the result is null.
Examples
The following example shows the sum of an array.
print arr=dynamic([1,2,3,4])
| extend arr_sum=array_sum(arr)
Output
| arr | arr_sum |
|---|---|
| [1,2,3,4] | 10 |