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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone,
I need a help , I m trying to achieve color formatting top 3 categories while drill down.
For example category I want top 3 values as red and others are blue. When I drill down to sub category1, I want to see top 3 values as red and others are blue. Again if I drill down sub category 2 then same I have to see.
can anyone help on this ?
Hi @amitchandak This is working for bar graph but it is not working for decomposition tree visual, can you help me how to do that ?
@krishb1414 , First of that you need to switch rank based on isinscope and color based on that too
Assume yiu have three rank Var or measures
example
Cat Rank = rankx(allselected(Dim[Category]), [Measure],,desc,dense) // same way others
Switch(True() ,
isinscope(Dim[Sub Category 2]) , [Sub Cat2 Rank],
isinscope(Dim[Sub Category 1]) , [Sub Cat1 Rank],
isinscope(Dim[Category]) , [Cat Rank]
)
Same way create color measure and use that in conditional formatting using field value option
Switch(True() ,
isinscope(Dim[Sub Category 2]) && [Sub Cat2 Rank] <= 3, "Red",
isinscope(Dim[Sub Category 1]) && [Sub Cat1 Rank]<= 3, "Red",
isinscope(Dim[Category]) && [Cat Rank] <= 3, "Red", "Blue"
)
IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEM
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...