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
bryanc78
Helper IV
Helper IV

Matrix conditional formatting - by row and not the entire table?

I currently have a matrix with 20 rows of sale items.  Columns are dates and values are percentages of items sold by that categoroy per month.  I would like conditional formatting by row to see if the percentages increase or decrease but PBI is applying the formatting to the entire table instead of by row.

 

As you can see below, Orange for Jan in the bottom example correctly shows red as it's the lowest number in the Orange row

The top example, shows Orange in Jan as yellow as it's not the lowest number in the entire table

 

bryanc78_0-1616526971055.png

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @bryanc78 ,

 

You present a table with 3 colours do you want a diverging based on the value or do you want only to highlight the biggest one?

 

If it's a diverging then you need to create a measure simialr to the one below:_

Ranking = 
RANKX (
    FILTER (
        ALL ( 'Table'[Item], 'Table'[Month] ),
        'Table'[Item] = SELECTEDVALUE ( 'Table'[Item] )
    ),
    CALCULATE ( SUM ( 'Table'[Percentage] )  ),
    ,
    ASC
)

 

This will give you a ranking based on the row and month then use it in the condittional formmating:

MFelix_0-1616671884770.png

 

Two remarks:

  • You can change the SUM by a measure if that is the case of your model
  • If you only need to highlight the MAX and the Minimum it is needed to use a different measure

See PBIX file attach.


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

1 REPLY 1
MFelix
Super User
Super User

Hi @bryanc78 ,

 

You present a table with 3 colours do you want a diverging based on the value or do you want only to highlight the biggest one?

 

If it's a diverging then you need to create a measure simialr to the one below:_

Ranking = 
RANKX (
    FILTER (
        ALL ( 'Table'[Item], 'Table'[Month] ),
        'Table'[Item] = SELECTEDVALUE ( 'Table'[Item] )
    ),
    CALCULATE ( SUM ( 'Table'[Percentage] )  ),
    ,
    ASC
)

 

This will give you a ranking based on the row and month then use it in the condittional formmating:

MFelix_0-1616671884770.png

 

Two remarks:

  • You can change the SUM by a measure if that is the case of your model
  • If you only need to highlight the MAX and the Minimum it is needed to use a different measure

See PBIX file attach.


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.