This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi Guys
I am trying to create custom icons for my table in Power Bi. This to illustrate "priority" of a given project task.
I have tried to find inspiration and done j.son, but for some reason it does not work.
Does somebody have a solution to implement custom icons?
Best Regards
Solved! Go to Solution.
Unichar makes it simple to include UNICODE symbols in reports. For example the following:
UNICHAR 9013 = UNICHAR(9013)
delivers
So you can use UNICHAR expressions directly in measures for conditional formatting.
If you want to use specific images, try:
You need to host the icons on a publicly accessible website/hosting service. (for the prupose of this example, I've just referenced images on the web).
Create a table including the URL to each image and an index column:
Set the Image URL column to type "Image URL"
Create the conditional format measure
Custom Icons =
SWITCH (
TRUE (),
[Sum of Sales] > 25800, LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 1 ),
[Sum of Sales] < 24000, LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 2 ),
LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 3 )
)
And you will get the following:
Proud to be a Super User!
Paul on Linkedin.
Unichar makes it simple to include UNICODE symbols in reports. For example the following:
UNICHAR 9013 = UNICHAR(9013)
delivers
So you can use UNICHAR expressions directly in measures for conditional formatting.
If you want to use specific images, try:
You need to host the icons on a publicly accessible website/hosting service. (for the prupose of this example, I've just referenced images on the web).
Create a table including the URL to each image and an index column:
Set the Image URL column to type "Image URL"
Create the conditional format measure
Custom Icons =
SWITCH (
TRUE (),
[Sum of Sales] > 25800, LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 1 ),
[Sum of Sales] < 24000, LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 2 ),
LOOKUPVALUE ( 'Icon Table'[Image], 'Icon Table'[Index], 3 )
)
And you will get the following:
Proud to be a Super User!
Paul on Linkedin.
you can use UNICHAR to customise icons
https://docs.microsoft.com/en-gb/dax/unichar-function-dax
Proud to be a Super User!
Paul on Linkedin.
@Paul can you elaborate a bit. I have 5 SVG files, I need to transform to icons. How can Unichar help with that?
Can you show what you are trying to achieve exactly?
Proud to be a Super User!
Paul on Linkedin.
I want to use the attached images as custom icons. This to depict the importance of project tasks in a table. So basically conditional formatting is what i want to achieve with the images.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 26 | |
| 23 |