PRODUCT DAX Function

The PRODUCT DAX function returns the product of the numbers in a column. The returned value is a decimal number.

DAX Syntax PRODUCT(Column)

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

Example: The following computes the product of the ID No column in the Sheet4 table.

DAX

Product Column = PRODUCT(Sheet4[ID No])
PRODUCT dax function