DAX Aggregation - PRODUCT function



Description

Returns the product of the numbers in a column.

DAX PRODUCT function is new in Excel 2016.

Syntax

PRODUCT (<column>) 

Parameters

Sr.No. Parameter & Description
1

column

The column that contains the numbers for which the product is to be computed.

Return Value

A decimal number.

Remarks

Only the numbers in the column are considered. Blanks, logical values, and text are ignored.

Example

= PRODUCT (ProductInventory[InventoryDuration]) 
dax_functions_aggregation.htm
Advertisements