Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have below table ,note it is just the smaple data
I want to calculate SUM on top of MAX.
Max is calculated on grouping CustomerID,AreaID and date,and once max is calulated need to sum of data based on CUstomerID and Date.
CustomerID | AreaID | Date | Amount | Max Amount | SUM Amount |
1 | x | 6/04/2020 | 10 | 10 | 40 |
1 | y | 6/04/2020 | 20 | 30 | 40 |
1 | y | 6/04/2020 | 30 | 30 | 40 |
1 | x | 5/04/2020 | 10 | 20 | 20 |
1 | x | 5/04/2020 | 20 | 20 | 20 |
2 | u | 6/04/2020 | 10 | 20 | 50 |
2 | z | 6/04/2020 | 5 | 30 | 50 |
2 | u | 6/04/2020 | 20 | 20 | 50 |
2 | z | 6/04/2020 | 30 | 30 | 50 |
2 | z | 6/04/2020 | 15 | 30 | 50 |
in my reports I will have card which will display Total Amount for a day for a customer.
So if CustomerID=1 and date is 6/04/2020 then card should display 40
if CustomerID=1 and date is 5/04/2020 then card should display 20
if CustomerID=2 and date is 6/04/2020 then card should display 50
I am able to calculate MAX,below is my measure:
Solved! Go to Solution.
Hi,
You may download my PBI file from here.
Hope this helps.
This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
Hi,
You may download my PBI file from here.
Hope this helps.
Thanks Ashish,
I never thought measures you created will work as it looks so neat and simple,it was great learning
You are welcome.