Forum Discussion
mel3948
3 years agoFrequent Visitor
Ribbon chart conditional formatting
Hi, I am wondering if I can conditionally format the ribbon chart? In my company we use ribbon chart to present supplier's assessment score ranking over the quarters, and we have set a baseline s...
- 3 years ago
Hi mel3948 ,
For this you can use the new measure driven label and create a measure that add the icon to your calculaiton and use it as your label.
Create a measure similar to this:
Formatting = IF(SUM('Table'[Value]) < 75 , "" & FORMAT(SUM('Table'[Value]), "#.00") , FORMAT(SUM('Table'[Value]), "#.00"))Now do a custom label on the visualization:
MFelix
3 years agoSuper User
Hi mel3948 ,
For this you can use the new measure driven label and create a measure that add the icon to your calculaiton and use it as your label.
Create a measure similar to this:
Formatting = IF(SUM('Table'[Value]) < 75 , "" & FORMAT(SUM('Table'[Value]), "#.00") , FORMAT(SUM('Table'[Value]), "#.00"))
Now do a custom label on the visualization:
mel3948
3 years agoFrequent Visitor
Hi Miguel, thank you so much for your help! Didn't know I can just add icons in this simple way.