Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
ben73
Frequent Visitor

Power BI Treemap with Conditional Formatting

Hi All,

 

I need to fulfil the business requirement: building a progress chart using treemap that the color of the bars can change based on certain value (In this case is measure 'A'). I have tried to implement the Advanced Controls but it didn't get me anywhere. Please kindly need your help.

 

ben73_0-1716289248968.png

 

1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

Hi @ben73 ,

 

You can try below formula and use it in conditional formatting:

TreemapColor = 
SWITCH(
    TRUE(),
    [Measure A] < 75, "Blue",
    [Measure A] >= 75, "light blue",
    "Gray"
)

vkongfanfmsft_1-1716366261827.png

 

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-kongfanf-msft
Community Support
Community Support

Hi @ben73 ,

 

You can try below formula and use it in conditional formatting:

TreemapColor = 
SWITCH(
    TRUE(),
    [Measure A] < 75, "Blue",
    [Measure A] >= 75, "light blue",
    "Gray"
)

vkongfanfmsft_1-1716366261827.png

 

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hi @v-kongfanf-msft ,

 

Thank you for your reply. I decided to use Data bar KPI visual published by Travis Sansome to solve my problem. Maybe next time, I will try your solution.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.