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

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.

Reply
Hoszi
Frequent Visitor

Calculate a DAX measure minimum in a group

Hi!

 

I've to calculate the percent of good items, see above. The Measure_Good_Perc value is a DAX measure.

 

GroupAll_ItemGoodMeasure_Good_Perc
A373594,59%
B30823877,27%
C513160,78%
D705781,43%
E563053,57%
F282175,00%

 

I have to make two measure which shows the minimum and maximum value of Measure_Good_Perc in the range of the groups (in this case the min is 53,57% and the max is 94,95%). The groups are dynamic, controlled by many slicers.

 

Thanks for the help.

1 REPLY 1
parry2k
Super User
Super User

@Hoszi try following two measures, it might required tweaking since dont know the whole data model/tables/relations etc.

 

Min Good % = 
MINX( VALUES( Table[Group] ), [Measure_Good_Perc] )

Max Good % = 
MAXX( VALUES( Table[Group] ), [Measure_Good_Perc] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.