Edit

Share via


series_product()

Applies to: ✅ Microsoft FabricAzure Data ExplorerAzure MonitorMicrosoft Sentinel

Calculates the product of series elements.

Syntax

series_product(series)

Learn more about syntax conventions.

Parameters

Name Type Required Description
series dynamic ✔️ Array of numeric values.

Returns

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

Example

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

Output

s1 series_product
[1,2,3,4] 24