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 can achieve this?
from a quick check you forgot another closing bracket
ALL('GDS Relationship Mapping')
should be ALL('GDS Relationship Mapping'))
12 Replies
- ALLUREANSolution Sage
You 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
- ALLUREANSolution Sage
Try it like:
ICON = IF(MIN('GDS relationShip Mapping'[Index]) < 1, UNICHAR(128078), UNICHAR(128077))
and use this measure in a visual
Did I answer your question? Please Like and Mark my post as a solution if it solves your issue. Thanks.
Appreciate your Kudos !!!