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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Format multiple rows in different colors in matrix visual

Dear BI Community,

 

In the following matrix visual, I have 3 layers of rows starting with fiscal year, gender, and seniority.

 

What I am trying to do is keep the row header and total for fiscal year in light blue, gender in grey, and seniority in white.

 

Is there any way to accomplish this? Sincerely appreciate your help with this.

AndrewPanchal_0-1644552393147.png

 

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try to create a measure like below and apply the measure to the conditional formatting of these values:

 

Measure =
IF(isinscope(financials[Segment]), "white", "#a0d1ff")

 

 

Best Regards,
Liang
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

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try to create a measure like below and apply the measure to the conditional formatting of these values:

 

Measure =
IF(isinscope(financials[Segment]), "white", "#a0d1ff")

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Create a  measure like this and use in conditional formatting using the field value option. Also use value plus grand total

 

color = Switch(true() ,

isinscope(Table[Fiscal Year])  || isinscope(Table[Gender]) , "Blue", "White")

 

How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4

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

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.