Forum Discussion
dan1234
3 years agoRegular Visitor
Power BI visual
Hi all, Posting to get some help in a problem. I have a requirement to create a chart like one attached in Power BI. The graph says which category has the highest value for a me...
- 3 years ago
Thanks a lot Shaurya, this worked. Appreciate it.
mangaus1111
3 years agoSolution Sage
Hi dan1234 ,
maybe something like this.
In the legend you have to put the below calculated column:
Status =
SWITCH(
TRUE(),
[Sum]>= 0.98, "Good",
[Sum]< 0.85, "Bad",
"Needs Improvement"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
dan1234
3 years agoRegular Visitor
Thank you for responding. Let me try that.