Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a table as below, and I want to create a measure for the max value after groupby [Category] and SUM([Value])
after GROUPBY, I can get below table. However, I don't know how to write the dax to get "9"
Please help
Solved! Go to Solution.
Try this
Measure = maxx(all('Table1');calculate(sum(Table1[Value]);Table1[Value]))
Try this
Measure = maxx(all('Table1');calculate(sum(Table1[Value]);Table1[Value]))
Thank you very much. It works!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.