The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I am new to Dax and power pivot and need help with a measure. From the Table below, I have managed to create a measure for finding the max of sum of sales by product and Name. =maxx(SUMMARIZE(Table1,Table1[Name],Table1[Product],"Sum",[Sum of Sales]),[Sum]).
But I could not correct the total of max sales. The correct sum on the pivot should be 22,000, not 12,000. Can you please suggest the correct Dax measure to achieve this? I could not correct this through Hasonfilter.
Pivot:
Table:
Name Product Sales
Anil | AA | 7000 |
Anil | BB | 7000 |
Anil | BB | 4000 |
Anil | AA | 3000 |
Anil | AA | 2000 |
Sunil | AA | 6000 |
Sunil | BB | 7000 |
Sunil | AA | 4000 |
Sunil | BB | 3000 |
Solved! Go to Solution.
Hi @Sudbrl
Please try
Maximum Sales by Product =
SUMX (
VALUES ( Table1[Name] ),
CALCULATE (
MAXX (
VALUES ( Table1[Product] ),
[Sum of Sales]
)
)
)
Hi @Sudbrl
Please try
Maximum Sales by Product =
SUMX (
VALUES ( Table1[Name] ),
CALCULATE (
MAXX (
VALUES ( Table1[Product] ),
[Sum of Sales]
)
)
)
Thank you
Dear Greg
Thank you for your kind consideration, I Have checked your posts multiple times but could not figure it out as I am new to DAX. Can you please suggest a measure specific to my sample? @Greg_Deckler
@Sudbrl First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
10 | |
7 |