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

Conditional Formatting Highest Sub-Total

I've got a matrix in place at the minute using sub-totals for 10 pieces of data. One value is 13, the other is 11 but this can vary based on user input via filters I have in place.

 

Is there a way of achieving this using Conditional Formatting? When I go into the options to do this and choose to look at totals only, I have to put in a custom minimum value and maximum value which isn't what I need.

 

Visual expectation below:

 

Capture.PNG

 

I've been looking through a Microsoft document online which has a limitation of:

 

  • Conditional formatting applies only to the values of Table or Matrix visuals, and doesn't apply to any subtotals, grand totals, or the Total row.

This makes me assume I'm unable to achieve this using Conditional Formatting, is there a way of doing this using a measure perhaps?

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Try to create the following formula:

 

Measure =
VAR temp_table =
    SUMMARIZE (
        ALLSELECTED ( Table[cat]; Table[cat2] );
        Table[cat];
        "@Total"; SUM ( Table[value] )
    )
RETURN
    IF ( MAXX ( temp_table; [@Total] ) = SUM ( Table[value] ); 1; 0 )

 

the use the condititonal formating to equal 0 and 1:

 

MFelix_0-1598277271504.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

4 REPLIES 4
MFelix
Super User
Super User

Hi @Anonymous ,

 

What is the version of PBI that you are currently using?

 

If i'm not mistaken starting in May there is the possibility to have conditional formatting on the totals and sub totals.

 

 

conditional formatting.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



amitchandak
Super User
Super User

Anonymous
Not applicable

I can add the conditional formatting, the problem is that when I go into the options to do this and choose to look at totals only, I have to put in a custom minimum value and maximum value which isn't what I need.

 

It needs to be able to look at the values being shown and determine of those, which is the highest and highlight it as such.

 

Using August 2020 release.

Hi @Anonymous ,

 

Try to create the following formula:

 

Measure =
VAR temp_table =
    SUMMARIZE (
        ALLSELECTED ( Table[cat]; Table[cat2] );
        Table[cat];
        "@Total"; SUM ( Table[value] )
    )
RETURN
    IF ( MAXX ( temp_table; [@Total] ) = SUM ( Table[value] ); 1; 0 )

 

the use the condititonal formating to equal 0 and 1:

 

MFelix_0-1598277271504.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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.