Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all, I have a table that looks like this, with many irrelevant columns between Team and ExceededGoalBy. I want to color code every row based on a calculation from the ExceededGoalBy column. How would I write a measure that I can use for Field Value in the conditional formatting with the following logic: if ExceededGoal <0, then use the color red. Else if >= 0 and <5, use color yellow, else if >= 5 then use green. Can somehow help me figure out how to write this DAX measure?
| Team | RandomColumn1 | RandomColumn2 | ExceededGoalBy |
| 1 | a | hg | 5 |
| 2 | b | d | 12 |
| 3 | d | e | 0 |
| 4 | f | u | 2 |
| 5 | e | r | 7 |
@jake4001 this color measure:
Color Measure =
VAR __Exceeded = SELECTEDVALUE ( Table[Exceeded Goal By] )
RETURN
SWITCH ( TRUE (),
__Exceeded >= 5, "Green",
__Exceeded >= 0, "Yellow",
"Red"
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
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 |
|---|---|
| 52 | |
| 34 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 61 | |
| 60 | |
| 39 | |
| 26 | |
| 24 |