Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I have the following table set up. I want to set up conditional formatting that highlights cell values based on the following criteria.
If Sales A is greater than or equal to 5 highlight blue.
If Sales B is greater than or equal to 10 highlight blue.
That's simple for me to do BUT here is my problem.
If Sales A is greater than or equal to 5, Sales B automatically highlighted blue regardless of value against Sales B.
If there is no value against Sales A, then the conditional formatting for Sales B (that is, if greater than or equal to 10 highlight blue) applies.
If the sum of Sales A and Sales B is greater than 12 highlight both Sales A and Sales B blue regardless of other formatting conditions.
Hope this makes sense.
| Site | Sales A | Sales B |
| Strawberry Fields | 64 | 7 |
| Mango Orchard | 4 | 7 |
| Vegie Patch | 3 | 9 |
Solved! Go to Solution.
Wonderful - now are you able to tell me how I combine the two formulas into one DAX measure please.
Wonderful - now are you able to tell me how I combine the two formulas into one DAX measure please.
Hi @DianneB ,
Please try these measures.
Color_A =
var _a = SUM('Table'[Sales A])
var _b = SUM('Table'[Sales B])
return IF(_a + _b <= 12 && _a < 5, BLANK(), "blue")Color_B =
var _a = SUM('Table'[Sales A])
var _b = SUM('Table'[Sales B])
return IF(_a + _b <= 12 && _a < 5 && _b < 10, BLANK(), "blue")
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have another question please - I have worked out the formula with your help but now want to use the same criteria to highlight costs but when I do so, blank cells will highlight because whilst the criteria will apply and only highlight cells which meet the criteria when I use as described, when I apply to something else even all cells highlight even if blank. Does this make sense?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 7 | |
| 5 |