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
subhendude
Employee
Employee

Highlight rows in a matrix table with a maximum value

I'm using a dataset as shown below. It contains the latency of different components across the locations.

subhendude_0-1668745342821.png

I'm using a matrix table with [Component] and [Location] field in Rows and [Latency] in Values. While the rows are collapsed, I can display the max value from the list of rows under each component. As an example, X1 has [12.76,34.76,78.98,21.65] and maximum value 78.98 is displayed. I'm able to display it using the MAX of latency. PFA snapshot with the stepped layout view.

subhendude_1-1668745357307.png

Now I would like to highlight the row with the maximum value for each component. The expected visual while expanded is shown below

subhendude_2-1668745374137.png

Can you please help me how to achieve this?

 

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @subhendude ;

You could create measures as follow:

firstlocation = 
IF(ISINSCOPE('Location'[Location]),
   MAX('Data'[Location]),
   CALCULATE(MAX('Data'[Location]),FILTER('Data', 
     [Latency]=CALCULATE(MAX('Data'[Latency]),ALLEXCEPT('Data','Data'[Component])))))
value = 
IF(ISINSCOPE('Location'[Location]),
    MAX('Data'[Latency]),
    CALCULATE(MAX('Data'[Latency]),FILTER(ALL('Data'),[Component]=MAX('Component'[Component]))))
condition = 
VAR _max =
    CALCULATE ( MAX ( Data[Latency] ), FILTER(ALL('Data'),[Component]=MAX('Component'[Component])))
    return IF([value]=_max,1)

The final show:

vyalanwumsft_0-1669012894562.png

vyalanwumsft_1-1669012903958.png


Best Regards,
Community Support Team _ Yalan Wu
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

4 REPLIES 4
v-yalanwu-msft
Community Support
Community Support

Hi, @subhendude ;

You could create measures as follow:

firstlocation = 
IF(ISINSCOPE('Location'[Location]),
   MAX('Data'[Location]),
   CALCULATE(MAX('Data'[Location]),FILTER('Data', 
     [Latency]=CALCULATE(MAX('Data'[Latency]),ALLEXCEPT('Data','Data'[Component])))))
value = 
IF(ISINSCOPE('Location'[Location]),
    MAX('Data'[Latency]),
    CALCULATE(MAX('Data'[Latency]),FILTER(ALL('Data'),[Component]=MAX('Component'[Component]))))
condition = 
VAR _max =
    CALCULATE ( MAX ( Data[Latency] ), FILTER(ALL('Data'),[Component]=MAX('Component'[Component])))
    return IF([value]=_max,1)

The final show:

vyalanwumsft_0-1669012894562.png

vyalanwumsft_1-1669012903958.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jihwan_Kim
Super User
Super User

Hi,

Please try writing a measure like below, and put it into the background color conditional formatting.

 

Latency measure: = 
SUM( Data[Latency] )

 

Latency max condition: =
VAR _max =
    CALCULATE ( MAX ( Data[Latency] ), ALL ( Location[Location] ) )
RETURN
    IF ( [Latency measure:] = _max, 1 )

 

Please check the below pictures and the attached pbix file.

 

Jihwan_Kim_3-1668746937115.png

 

 

Jihwan_Kim_0-1668746741939.png

 

Jihwan_Kim_1-1668746814410.png

 

Jihwan_Kim_2-1668746922426.png

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thanks for the solution. It worked except a scenario...

I saw you're using SUM for Latency measure. If I change it to MAX, the rows appeared as yellow highlighted while collapsed.

The behavior I'm looking is to display max of latency while collapsed and highlight the row with the max value while expanded.

amitchandak
Super User
Super User

@subhendude , You can only highlight the value, not row column, Assume latency  is a meausre

 

Create a measure

if(calculate(maxx(Summarize(Table,Table[Compnent], Table[location]), Table[latency]), filter(allselected(Table), Table[Compnent] = max(Table[Compnent]) && Table[location] = max(Table[location])  )) = [latency], "Yellow", "white")

 

use in conditional formatting using field value option

 

How to do conditional formatting by measure and apply it on pie?


https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...

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.