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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

Highlighting min and max value in a table

Hi there, I tried to use conditional formatting to display the min and max values of a measure in a table. Like the one in table below which highlihghts value in green for max and min in red in a row.

Preeti_Tanwani_0-1606859735839.png

This is what I got so far with Internal hire total being a measure.

FormatMeasure =
VAR SelectedTable = ALLSELECTED('FACT_Movement')
VAR SelectedTotal = CALCULATE(COUNT('FACT_Movement'[Employee ID]))
VAR MaxCount = CALCULATE(MAXX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALL('FACT_Movement'[Type of Move]))
VAR MinCount = CALCULATE(MINX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALL('FACT_Movement'[Type of Move]))
VAR MovementTotal = [Internal Hire total]
RETURN
SWITCH (
TRUE(),
MovementTotal= MaxCount, "GREEN",
MovementTotal=MinCount,"Red" )
 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous use the below measure and use it inside the conditional formatting pane to get the results.

 

Measure = var rnk1=rankx(allselected(particulars),yourmeasure,,desc)

var rnk2 = rankx(allselected(particulars),yourmeasure,,asc)

return if(rnk1=1,"Green",if(rnk2=1,"Red"))

 

This will surely work, please mark this as solution if this works fine with you.

 

Thanks.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try one of the two

 

FormatMeasure =
VAR SelectedTable = ALLSELECTED('FACT_Movement')
VAR SelectedTotal = CALCULATE(COUNT('FACT_Movement'[Employee ID]))
VAR MaxCount = CALCULATE(MAXX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALLEXCEPT('FACT_Movement'[Type of Move]))
VAR MinCount = CALCULATE(MINX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALLEXCEPT('FACT_Movement'[Type of Move]))
VAR MovementTotal = [Internal Hire total]
RETURN
SWITCH (
TRUE(),
MovementTotal= MaxCount, "GREEN",
MovementTotal=MinCount,"Red" )

or

FormatMeasure =
VAR SelectedTable = ALLSELECTED('FACT_Movement')
VAR SelectedTotal = CALCULATE(COUNT('FACT_Movement'[Employee ID]))
VAR MaxCount = CALCULATE(MAXX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALLEXCEPT('FACT_Movement'[GENDER]))
VAR MinCount = CALCULATE(MINX(VALUES('FACT_Movement'[Type of Move]),[Internal Hire total]),ALLEXCEPT('FACT_Movement'[GENDER]))
VAR MovementTotal = [Internal Hire total]
RETURN
SWITCH (
TRUE(),
MovementTotal= MaxCount, "GREEN",
MovementTotal=MinCount,"Red" )

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
Anonymous
Not applicable

Hi @Anonymous use the below measure and use it inside the conditional formatting pane to get the results.

 

Measure = var rnk1=rankx(allselected(particulars),yourmeasure,,desc)

var rnk2 = rankx(allselected(particulars),yourmeasure,,asc)

return if(rnk1=1,"Green",if(rnk2=1,"Red"))

 

This will surely work, please mark this as solution if this works fine with you.

 

Thanks.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors
Top Kudoed Authors