Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I would like to use icons as conditional formatting, and the request I got is to differentiate between growth ranges:
for 0-10% :
10-50%:
50%-
and same logic for negative numbers with the red triangle pointing down.
I found these icons in conditional formatting:
Can you please help me how to create this conditional formatting?
thank you!
Solved! Go to Solution.
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())
Final get:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
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())
Final get:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
@bsz412 , Follow the Star Rating blog and use a different unichar. Also, change logic as per need
https://community.powerbi.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/166903
https://www.c-sharpcorner.com/article/add-star-rating-in-power-bi-desktop-using-dax-expression/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
133 | |
76 | |
53 | |
38 | |
37 |
User | Count |
---|---|
202 | |
80 | |
71 | |
55 | |
48 |