Forum Discussion
vjnvinod
4 years agoImpactful Individual
Conditional formatting icon change
Hi Currently, this is how my conditional formatting Icon looks like, wondering if there is any way i can bring in the "Thumbs UP", "Thumbs Down" icon instead of a circle is there any way i c...
- 4 years ago
from a quick check you forgot another closing bracket
ALL('GDS Relationship Mapping')
should be ALL('GDS Relationship Mapping'))
ALLUREAN
4 years agoSolution Sage
I just change the post sorry, can you try with UNICODE instead of UNICHAR?
- themistoklis4 years agoCommunity Champion
Please use the following formula:
Measure = IF (SUM(Sheet1[Values]) = 30, UNICHAR(128077), UNICHAR(128078))File also attached
- vjnvinod4 years agoImpactful Individual
it works for some reason, it's spreading to the Total column as well
how do I stop not showing in the total?
- themistoklis4 years agoCommunity Champion
Actually there is no option where you can exclude the icon from totals.
But there is a workaround in the measure.
You just need to say that if the value is equal to total value then do not show the icon on totals.
See attached file.
Measure = IF (SUM(Sheet1[Values]) >= CALCULATE (SUM(Sheet1[Values]), ALL(Sheet1)),"", IF (SUM(Sheet1[Values]) = 30, UNICHAR(128077), UNICHAR(128078)))