Forum Discussion
vjnvinod
Impactful Individual
4 years agoConditional 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
Solution Sage
4 years agoYou can create a measure that then use in visual like
ICON = IF(MIN('GDS relationShip Mapping'[Index]) < 1, UNICHAR(128078), UNICHAR(128077))or if you have already measure showing 0,1,2 flags just modify it
- ALLUREAN4 years ago
Solution Sage
I just change the post sorry, can you try with UNICODE instead of UNICHAR?
- themistoklis4 years ago
Community Champion
Please use the following formula:
Measure = IF (SUM(Sheet1[Values]) = 30, UNICHAR(128077), UNICHAR(128078))File also attached