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'm trying to work out a DAX to solve the below problems, but cannot figure it out myself.
The above table has three columns, and my objective is to sum up the value for all the names with the highest score. (in the red circle).
Anyone has a way to solve this by using DAX? No additional table can be created.
Thanks.
Solved! Go to Solution.
= SUMX( VALUES( Table1[Name] ) , CALCULATE( MAX( Table1[Value] ) ) )
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
= SUMX( VALUES( Table1[Name] ) , CALCULATE( MAX( Table1[Value] ) ) )
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
**bleep**! It works! @CNENFRNL Thank you!
Could you help to elaborate a bit on the logic of this DAX? Want to learn. 🙂