Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Solved! Go to Solution.
from a quick check you forgot another closing bracket
ALL('GDS Relationship Mapping')
should be ALL('GDS Relationship Mapping'))
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 !!!
Proud to be a Super User!
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
Proud to be a Super User!
I just change the post sorry, can you try with UNICODE instead of UNICHAR?
Proud to be a Super User!
Please use the following formula:
Measure = IF (SUM(Sheet1[Values]) = 30, UNICHAR(128077), UNICHAR(128078))
File also attached
it works for some reason, it's spreading to the Total column as well
how do I stop not showing in the total?
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)))
Another way to handle the total differently is to use ISINSCOPE.
IF (
ISINSCOPE ( Sheet1[Dimension] ),
IF ( SUM ( Sheet1[Values] ) = 30, UNICHAR ( 128077 ), UNICHAR ( 128078 ) )
)
from a quick check you forgot another closing bracket
ALL('GDS Relationship Mapping')
should be ALL('GDS Relationship Mapping'))
thanks so much, this is really helpful
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.