Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
57 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
66 | |
45 | |
44 | |
40 |