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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
winterbloom
Frequent Visitor

Conditional formatting on multiple conditions

Hello,

 

I am banging my head against the wall trying to solve this problem. I hope you help.

 

I have a table visual made up of fields from multiple tables.

 

I need to do conditional formatting on the Variance $ column. The variance is Budget minus Actual (measure). 

winterbloom_0-1689313823860.png

These are the conditions for the formatting:

 

The background colour should be green IF the variance is positive and IE Type is E.
The colour should be red if the variance is positive and IE Type is I.
The colour should be red if the variance is negative and IE Type is E.

The colour should be green if the variance is negative and IE Type is I.

The IE Type is a value/attribute, not a measure.

 

Please help!

1 REPLY 1
amitchandak
Super User
Super User

@winterbloom , You can have measure like

Switch(True(),

max(Table[Type]) = "E" && [Varinace]>=0, "Green",

max(Table[Type]) = "1" && [Varinace]<0, "Red",

// add other conditions

)

 

Use this measure in conditional formatting using field value option

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...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors