Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello, I hope you are well
I need to create a measure that allows you to display the maximum value of a column. The funny thing is that this value can vary depending on the filters used.
| category | number | Maximum |
| A | 0,54598347 | 0,94512971 |
| B | 0,02868099 | 0,94512971 |
| C | 0,5445268 | 0,94512971 |
| D | 0,19868194 | 0,94512971 |
| E | 0,09633249 | 0,94512971 |
| F | 0,94512971 | 0,94512971 |
| G | 0,02301643 | 0,94512971 |
| H | 0,61961557 | 0,94512971 |
I've tried MAXA and MAXX and the formula doesn't work for me 😞
Thanks a lot!
Solved! Go to Solution.
Hi @Syndicate_Admin ,
You could use ALL(), ALLSELECTED() and ALLEXCEPT() function to get different result.
ALL() function could be used to calculate the max value for entire table.
https://docs.microsoft.com/en-us/dax/all-function-dax
ALLSELECTED() function could be used to calculate the max value for filtered table.
https://docs.microsoft.com/en-us/dax/allselected-function-dax
ALLEXCEPT() function could be used to calculated the max value for groups.
https://docs.microsoft.com/en-us/dax/allselected-function-dax
Best Regards,
Jay
Hi @Syndicate_Admin ,
You could use ALL(), ALLSELECTED() and ALLEXCEPT() function to get different result.
ALL() function could be used to calculate the max value for entire table.
https://docs.microsoft.com/en-us/dax/all-function-dax
ALLSELECTED() function could be used to calculate the max value for filtered table.
https://docs.microsoft.com/en-us/dax/allselected-function-dax
ALLEXCEPT() function could be used to calculated the max value for groups.
https://docs.microsoft.com/en-us/dax/allselected-function-dax
Best Regards,
Jay
Hi @Syndicate_Admin ,
you can do it like this:
Max of selected values =
CALCULATE (
MAX ( 'Table'[number] ) ,
ALLSELECTED ( 'Table'[number] )
)
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 20 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 35 | |
| 26 | |
| 20 | |
| 18 | |
| 17 |