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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
bsz412
Helper III
Helper III

new icons for conditional formatting

Hi, 

 

I would like to use icons as conditional formatting, and the request I got is to differentiate between  growth ranges: 

for 0-10% :

bsz412_1-1652172994889.png

10-50%: 

bsz412_2-1652173034814.png

50%-

bsz412_3-1652173076139.png

 

and same logic for negative numbers with the red triangle pointing down. 

 

I found these icons in conditional formatting:

bsz412_0-1652172767990.png

Can you please help me how to create this conditional formatting?

thank you!

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

HI  @bsz412 ,

You can achieve this by:

1.create new column:

test = IF('Table'[value]<=0.1,UNICHAR(9650),IF('Table'[value]>0.1&&'Table'[value]<=0.5,UNICHAR(9650)&""&UNICHAR(9650),UNICHAR(9650)&""&UNICHAR(9650)&""&UNICHAR(9650)))

Then set color for it:

COLOR = IF(MAX('Table'[test])<>BLANK(),"Green",BLANK())

vluwangmsft_0-1652756000914.png

vluwangmsft_1-1652756017857.png

Final get:

vluwangmsft_2-1652756041464.png

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


Best Regards

Lucien

View solution in original post

2 REPLIES 2
v-luwang-msft
Community Support
Community Support

HI  @bsz412 ,

You can achieve this by:

1.create new column:

test = IF('Table'[value]<=0.1,UNICHAR(9650),IF('Table'[value]>0.1&&'Table'[value]<=0.5,UNICHAR(9650)&""&UNICHAR(9650),UNICHAR(9650)&""&UNICHAR(9650)&""&UNICHAR(9650)))

Then set color for it:

COLOR = IF(MAX('Table'[test])<>BLANK(),"Green",BLANK())

vluwangmsft_0-1652756000914.png

vluwangmsft_1-1652756017857.png

Final get:

vluwangmsft_2-1652756041464.png

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


Best Regards

Lucien

amitchandak
Super User
Super User

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.