Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I want to show a matrix with three different hierarchial layers.
Each layer should have a different format for clarity reasons.
Like this:
Is this possible? As the per row-level for subtotals does not allow to change value formatting.
Somehow possible to get the headers into the same colors then values using this method?
Hi @PhilippeG 
You can only use conditional formatting for the currently expanded hierarchy.
For more information, you can refer to the following posts:
Solved: Conditional Formatting - Microsoft Fabric Community
Multiple level hierarchy matrix colors - Microsoft Fabric Community
Or you can use the following measure:
Measure = 
SWITCH(TRUE(),
ISINSCOPE('Table'[RowA]),"black",
ISINSCOPE('Table'[RowB]),"blue",
ISINSCOPE('Table'[RowC]),"red")
You can then click on the icon below to enter the individual matrix levels:
      
     
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have a potential solution here. If it works for you, kindly mark the answer so others with similar challenges can easily find this solution.
To use this solution:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.