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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Kerk
Frequent Visitor

Conditional formatting by row issue

Hi everyone,

 

In the "Qualification times" tab, I am using the "MinMax" measure in a matrix to format the min and max values of each row.

The min values seem to be working and are getting marked in green, but the max values do not work.

I am not able to figure out what have I done wrong.

Your help would be appreciated.   

 

Please find the pbix here: https://www.dropbox.com/s/zvd5q0zk45fbdme/SWM_TestDB.pbix?dl=0 

thank you in advance

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Kerk ,

 

Please try:

Measure 2 = 
var _T= SUMMARIZE(ALLSELECTED('Bookings'),[Styles.Style],Bookings[Distance(Distance).Distance],[Swimmer], "Time",[PB_Formated])
VAR MinValue = MINX(FILTER(_T,[Styles.Style]=MAX(Bookings[Styles.Style]) && [Distance(Distance).Distance]=MAX('Bookings'[Distance(Distance).Distance])),[Time])
VAR MaxValue = MAXX(FILTER(_T,[Styles.Style]=MAX(Bookings[Styles.Style]) && [Distance(Distance).Distance]=MAX('Bookings'[Distance(Distance).Distance])),[Time])
VAR CurrentValue = [PB_Formated]
VAR Result = 
    SWITCH ( 
        TRUE,
        CurrentValue = MinValue, 1, -- 1 for MIN
        CurrentValue = MaxValue, 2  -- 2 for MAX
    )
RETURN
    Result

Output:

Eyelyn9_0-1654493290523.png

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Kerk ,

 

Please try:

Measure 2 = 
var _T= SUMMARIZE(ALLSELECTED('Bookings'),[Styles.Style],Bookings[Distance(Distance).Distance],[Swimmer], "Time",[PB_Formated])
VAR MinValue = MINX(FILTER(_T,[Styles.Style]=MAX(Bookings[Styles.Style]) && [Distance(Distance).Distance]=MAX('Bookings'[Distance(Distance).Distance])),[Time])
VAR MaxValue = MAXX(FILTER(_T,[Styles.Style]=MAX(Bookings[Styles.Style]) && [Distance(Distance).Distance]=MAX('Bookings'[Distance(Distance).Distance])),[Time])
VAR CurrentValue = [PB_Formated]
VAR Result = 
    SWITCH ( 
        TRUE,
        CurrentValue = MinValue, 1, -- 1 for MIN
        CurrentValue = MaxValue, 2  -- 2 for MAX
    )
RETURN
    Result

Output:

Eyelyn9_0-1654493290523.png

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for looking in to this  @Anonymous!  

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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