PRODUCT DAX Function (Aggregation)
Returns the product of given column reference.
Syntax
Parameter | Attributes | Description |
---|---|---|
ColumnName |
Column that contains values for product. |
Return values
The product of the numbers in a column.
Remarks
The PRODUCT function internally executes PRODUCTX, without any performance difference.
The following PRODUCT call:
PRODUCT ( table[column] )
corresponds to the following PRODUCTX call:
PRODUCTX ( table, table[column] )
Related functions
Other related functions are:
Last update: Feb 6, 2019 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo
MSDN documentation: https://msdn.microsoft.com/en-us/query-bi/dax/product-function-dax