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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Pklu
Frequent Visitor

Custom Formatting

I have a table with the following fields and values:

 

Projected AmountActual AmountVarience
$45$50-$5
$150$50$100
$400$600-$200
$165$200-$35
$75$50$25
$450$500-$50

 

I would like to have all the negative variences column background - RED and all the postive variences column background - GREEN.

 

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Is your variance amount from a measure?

You would just apply the rules like this to the background of the Variance field:

jdbuchanan71_4-1742867367707.png

 

jdbuchanan71_2-1742867207670.png

 

 

View solution in original post

4 REPLIES 4
ArwaAldoud
Super User
Super User

Hi @Pklu 

Since you only have two options (negative or positive), you can achieve this using a Color measure and applying it in Conditional Formatting:

- Go to Conditional Formatting → Background Color.
- In the "What field should we base this on?" section, choose Color.
- Use this measure:

 

Color =
SWITCH(
TRUE(),
ISBLANK(SELECTEDVALUE('Sheet1'[Varience])), "Gray",
SELECTEDVALUE('Sheet1'[Varience]) > 0, "Green",
SELECTEDVALUE('Sheet1'[Varience]) < 0, "Red",
"Gray"
)

 

Check the screenshot for more clarity

ArwaAldoud_0-1742868462402.png

If this response was helpful, please accept it as a solution and give kudos to support other community members.

jdbuchanan71
Super User
Super User

Is your variance amount from a measure?

You would just apply the rules like this to the background of the Variance field:

jdbuchanan71_4-1742867367707.png

 

jdbuchanan71_2-1742867207670.png

 

 

jdbuchanan71
Super User
Super User

@Pklu ,

You can apply conditional formatting to the field based on the value like this:
https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting

 

I tried all that. They were the first things I did but it did not meet my expectations.

 

Looking for something like this:

 

Projected AmountActual AmountVarience
$45$50-$5
$150$50$100
$400$600-$200
$165$200-$35
$75$50$25
$450$500-$50

 

To this

 

sampleresult.jpg

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors