March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi @Anonymous
It is because you are using Average in Summarization. I see the axis field in chart is Month. If a month has multiple rows data in the table and has both 0 and 1 in Colour column, the average of color for this month will be a value between 0 and 1, which doesn't meet either rule. Only when its color values are all 1, its average will be 1. The same for 0.
I guess you drag [Monthly RF IQP Target%] and [Actual IQP%] columns into the chart as values, right? What are their aggregation type in the chart? If they are using Sum, you can create a measure like below. In conditional formatting setting, select Format by Field value and Based on this measure.
color measure =
IF (
SUM ( 'table'[Monthly RF IQP Target%] ) >= SUM ( 'table'[Actual IQP%] ),
"Green",
"Red"
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Anonymous
It is because you are using Average in Summarization. I see the axis field in chart is Month. If a month has multiple rows data in the table and has both 0 and 1 in Colour column, the average of color for this month will be a value between 0 and 1, which doesn't meet either rule. Only when its color values are all 1, its average will be 1. The same for 0.
I guess you drag [Monthly RF IQP Target%] and [Actual IQP%] columns into the chart as values, right? What are their aggregation type in the chart? If they are using Sum, you can create a measure like below. In conditional formatting setting, select Format by Field value and Based on this measure.
color measure =
IF (
SUM ( 'table'[Monthly RF IQP Target%] ) >= SUM ( 'table'[Actual IQP%] ),
"Green",
"Red"
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Excellent.. working now..
It looks like your rules are set to values of exactly 1 or 0, and none of your bars are exactly that value. Change to <= or >=.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi Thanks for your response.
I have tried conditional formatting as below. Kindly go through and support please.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |