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
I have a measure which i have created and result of the measure is something like this. I need to find out Max value out of this output.
| Accuracy | |
| Customer 1 | 99.97% |
| Customer 2 | 99.82% |
| Customer 3 | 99.82% |
| Customer 4 | 99.96% |
| Customer 5 | 99.97% |
| Customer 6 | 99.66% |
However i get below error message
Solved! Go to Solution.
You need to look at the MAXX function. It works like this.
If you have a measure that calculates sales
Sales = SUM ( Sales_Table[Sales Amount] )
And you want the MAX Sales amount across all customers it would be
Max Sales = MAXX ( Values ( Customer[Customer Number] ), [Sales] )
You need to look at the MAXX function. It works like this.
If you have a measure that calculates sales
Sales = SUM ( Sales_Table[Sales Amount] )
And you want the MAX Sales amount across all customers it would be
Max Sales = MAXX ( Values ( Customer[Customer Number] ), [Sales] )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!