Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
vjnvinod
Impactful Individual
Impactful 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?

 

vjnvinod_0-1639909822226.png

 

1 ACCEPTED SOLUTION

@vjnvinod 

 

from a quick check you forgot another closing bracket

ALL('GDS Relationship Mapping')

should be ALL('GDS Relationship Mapping'))

View solution in original post

12 REPLIES 12
ALLUREAN
Solution Sage
Solution 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 !!!

https://allure-analytics.com/

 




Did I answer your question? Mark my post as a solution!


https://allure-analytics.com/
https://www.youtube.com/channel/UCndD_QZVNB_JWYLEmP6KrpA
https://www.linkedin.com/company/77757292/

Proud to be a Super User!




ALLUREAN
Solution Sage
Solution 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




Did I answer your question? Mark my post as a solution!


https://allure-analytics.com/
https://www.youtube.com/channel/UCndD_QZVNB_JWYLEmP6KrpA
https://www.linkedin.com/company/77757292/

Proud to be a Super User!




vjnvinod
Impactful Individual
Impactful Individual

@ALLUREAN 

 

Codes are not reading, not sure why

 

vjnvinod_0-1639911218466.png

 

I just change the post sorry, can you try with UNICODE instead of UNICHAR?




Did I answer your question? Mark my post as a solution!


https://allure-analytics.com/
https://www.youtube.com/channel/UCndD_QZVNB_JWYLEmP6KrpA
https://www.linkedin.com/company/77757292/

Proud to be a Super User!




vjnvinod
Impactful Individual
Impactful Individual

@ALLUREAN 

 

still doesn't work

refer the error below

vjnvinod_0-1639911699043.png

 

@vjnvinod 

 

Please use the following formula:

Measure = IF (SUM(Sheet1[Values]) = 30, UNICHAR(128077), UNICHAR(128078))

 

File also attached

@themistoklis 

it works for some reason, it's spreading to the Total column as well

how do I stop not showing in the total?

 

vjnvinod_0-1639916746901.png

 

@vjnvinod 

 

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 ) )
)

 

@themistoklis 

tried replicating the formula but getting some error

 

vjnvinod_0-1639918141590.png

 

@vjnvinod 

 

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors