Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
PowerBIUser1021
Frequent Visitor

How can you Normalise Measure Values (filtered by Column Value)?

Hello Power BI Community! ‌‌😊

Is there a way to normalise Measure values (filtered by a column value)? 
For example, to do this I think I need min and max values of my measure. Below you can see the measure in a matrix table and find these values when they are filtered by a location (column value)...

 

5.3%
6.3%
11.2%
12.6%
10.3%
12.8%
9.8%
5.7%

 

But can I use DAX to show the min and max values of the above to show as per the below?


          Max

5.3% 12.8%
6.3% 12.8%
11.2% 12.8%
12.6% 12.8%
10.3% 12.8%
12.8% 12.8%
9.8% 12.8%
5.7% 12.8%

1 ACCEPTED SOLUTION

Thank you! I was able to use one of the formulas from this article.

MAXX(ALLSELECTED(column filter), [Measure]) and the same for min. Works perfectly!

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Please read about ALLSELECTED. This is the function to use but it's tricky.

https://www.sqlbi.com/articles/the-definitive-guide-to-allselected/

Thank you! I was able to use one of the formulas from this article.

MAXX(ALLSELECTED(column filter), [Measure]) and the same for min. Works perfectly!

amitchandak
Super User
Super User

@PowerBIUser1021 ,

Try measures like

Max

calculate(max(Table[Value]) , all(Table))

calculate(max(Table[Value]) , allselected(Table))

 

Min

calculate(Min(Table[Value]) , all(Table))

calculate(Min(Table[Value]) , allselected(Table))

 

refer

https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept...

https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
mhossain
Solution Sage
Solution Sage

@PowerBIUser1021 

 

Create a measure for MAX column

 

= Calculate(Max(Table[your value column]), removefilter(Table[your value column]))

 

Try above, if in your table you have multiple fileds then you probably would need to adjust the removefilter part in the dax.

 

Let me know if above is making sense

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.