array_sum()

Learn how to use the array_sum() function to calculate the sum of elements in a dynamic array.

Calculates the sum of elements in a dynamic array.

Syntax

array_sum(array)

Parameters

NameTypeRequiredDescription
arraydynamic✔️The array to sum.

Returns

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

Example

This following example shows the sum of an array.

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

Output

arrarr_sum
[1,2,3,4]10