DAX Aggregation - PRODUCTX function



Description

Returns the product of the numbers resulted from an expression evaluated for each row in a table.

DAX PRODUCTX function is new in Excel 2016.

Syntax

PRODUCTX (<table>, <expression>) 

Parameters

Sr.No. Parameter & Description
1

table

The table containing the rows for which the expression will be evaluated.

2

expression

The expression to be evaluated for each row of the table.

Return Value

A decimal number.

Remarks

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

Example

= [PresentValue] * PRODUCTX (AnnuityPeriods, 1 + [FixedInterestRate])
dax_functions_aggregation.htm
Advertisements