Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
I'm a new PowerBI user coming over from Tableau. I'm trying to determine if there is a way to add a categorical circle icon to a text table, similar to the Tableau screenshot below:
Can you let me know the best process to use in PowerBI to achieve the desired result above?
Thank you,
Paul
Solved! Go to Solution.
@Anonymous , You can create a unichar measure
Example
🟠 128992 |
🟡 128993 |
🟢 128994 |
🟣 128995 |
🟤 |
Switch(Max(table[Category]),
"Cat1", unichar(128992),
"Cat2", unichar(128993),
"Cat2", unichar(128994),
// add others
unichar(128995) //default
)
Or you can circle and do conditional formatting
same manner
UNICHAR - Tool for Custom Icon Formatting: https://www.youtube.com/watch?v=veCtfP8IhbI&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=50
https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
@Anonymous , You can create a unichar measure
Example
🟠 128992 |
🟡 128993 |
🟢 128994 |
🟣 128995 |
🟤 |
Switch(Max(table[Category]),
"Cat1", unichar(128992),
"Cat2", unichar(128993),
"Cat2", unichar(128994),
// add others
unichar(128995) //default
)
Or you can circle and do conditional formatting
same manner
UNICHAR - Tool for Custom Icon Formatting: https://www.youtube.com/watch?v=veCtfP8IhbI&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=50
https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
User | Count |
---|---|
134 | |
74 | |
72 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
65 | |
62 | |
53 |