Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
Solved! Go to Solution.
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.
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.
@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
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |