Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I have a table like below:
When the user selects multiple months on Power BI, for example January and February, I show the following:
On the card I have to show the Maximum Revenue which is 260,000. As it will be 'Category A' which will be always the maximum, I can also say Category = 'Category A' in the measure. I am using the below measure for the card:
Total Revenue = MAXX('Test Table','Test Table'[Revenue])
However, it is not showing the aggregated total 260,000 instead it is showing 135,000 which is the maximum for February. What am I doing wrong?
Thanks.
Solved! Go to Solution.
The measure you've written iterates over each of the rows of 'Test Table' within the filter context and each month is in a separate row of this data table. You haven't told it that you want to aggregate before taking a max.
You need to iterate over the granularity that you want to aggregate at:
Max Description-Category Revenue =
MAXX (
SUMMARIZE (
'Test Table',
'Test Table'[Description],
'Test Table'[Category],
"Rev", SUM ( 'Test Table'[Revenue] )
),
[Rev]
)
The measure you've written iterates over each of the rows of 'Test Table' within the filter context and each month is in a separate row of this data table. You haven't told it that you want to aggregate before taking a max.
You need to iterate over the granularity that you want to aggregate at:
Max Description-Category Revenue =
MAXX (
SUMMARIZE (
'Test Table',
'Test Table'[Description],
'Test Table'[Category],
"Rev", SUM ( 'Test Table'[Revenue] )
),
[Rev]
)
It worked. Thanks!! 😊
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
22 | |
17 | |
17 | |
11 | |
7 |
User | Count |
---|---|
27 | |
26 | |
12 | |
12 | |
12 |