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.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft 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 |