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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I have a matrix with two different rows in the Rows level and different values corresponding to each level (used a Switch measure to calculate depending on the row level). I have conditional formatting where I want the colors of the top level in the row hierarchy to be light green if they are greater than 0, light gray if they are 0, or light red if they are less than 0. I do not want to apply this color formatting to the expanded second level in the row hierarchy. I know that there are measures to set up conditional formatting based on field value, but this has not worked for me in just applying this color formatting to the top level values, especially because the values in the matrix switch based on the row level.
Furthermore, when I expand the rows to see the second level values, I do not see the value for my top-level row anymore (only when I collapse back to the top-level do I see the values there). Is there any clean way to show the top-level row hierarchy values also while expanding into the second level?
Solved! Go to Solution.
@vip219 , You can use isinscope for that. When you conditional formatting make sure you use values and total
Switch( True() ,
isinscope(Table[Level2]) , if( [Measure] >0, "Grey", "Red") ,
isinscope(Table[Level1]) , if( [Measure] >0, "Yellow", "Red")
)
You can use that in conditional formatting using field value option
@vip219 , You can use isinscope for that. When you conditional formatting make sure you use values and total
Switch( True() ,
isinscope(Table[Level2]) , if( [Measure] >0, "Grey", "Red") ,
isinscope(Table[Level1]) , if( [Measure] >0, "Yellow", "Red")
)
You can use that in conditional formatting using field value option
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
88 | |
52 | |
45 | |
39 | |
38 |