Reputation: 3
Thanks in advance for helping this struggling newbie.
Can this aggregation be done with a single DAX statement?
I need to get to the "50" result using a measure if possible...
Upvotes: 0
Views: 71
Reputation: 26
Here is a DAX measure performing this calculation (replace YourTable with the actual table name):
=
SUMX (
VALUES ( YourTable[Item] ),
MAXX (
VALUES ( YourTable[Round] ),
CALCULATE( SUM ( YourTable[Value] ) )
)
)
This measure uses nested iterators SUMX and MAXX to iterate over the Item and Round dimensions.
Upvotes: 1