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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
ben73
New Member

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors