Forum Discussion
Finding a progression visual
- 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 you can achieve this with matrix visual.
- put company column on rows
- put step column on columns
- put status on values (it will be aggregation, not sure what value you have for status)
and then you can use condition formatting for background and foreground color of your status column, so it will only show cells wiht filled color and no value because of same background and foreground color.
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:
- parry2k7 years ago
Super 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