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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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" )

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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