Forum Discussion
Anonymous
7 years agoNot applicable
Finding a progression visual
Hi, I'm new to PowerBI and am having trouble finding the right visual to use. I want something that tracks company progression for indpendent steps. I want the a grid-like structure with Compan...
- 7 years ago
Anonymous you can create a measure for color based on Status
KPI Color = VAR __status = MAX( Table[Status] ) RETURN SWITCH( __status, "Complete", "Green", "InProgress", "Yellow" "Incomplete", "Red" )
In format by drop down select Field Value and select KPI Color measure whcih we created in above step.
Anonymous
7 years agoNot applicable
parry2k thanks for the help. My status values are strings ("Complete", "Incomplete" or "In Progress"). It looks like conditional formatting only works for numeric values? I want the background color to be green if status = "Complete". Is this possible?
Here's what I see whenever I choose conditional formatting for status:
parry2k
7 years agoSuper User
Anonymous you can create a measure for color based on Status
KPI Color = VAR __status = MAX( Table[Status] ) RETURN SWITCH( __status, "Complete", "Green", "InProgress", "Yellow" "Incomplete", "Red" )
In format by drop down select Field Value and select KPI Color measure whcih we created in above step.
- Anonymous7 years agoNot applicable
Works perfectly. Thanks for the timely reponses! parry2k