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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Custom Icons

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

1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

Unichar makes it simple to include UNICODE symbols in reports. For example the following:

 

UNICHAR 9013 = UNICHAR(9013)

 

delivers

Unicahr.JPG

 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:

Icon Table.JPG

Set the Image URL column to type "Image URL"

imagr Url.JPG

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:

Result.JPG

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

5 REPLIES 5
PaulDBrown
Community Champion
Community Champion

Unichar makes it simple to include UNICODE symbols in reports. For example the following:

 

UNICHAR 9013 = UNICHAR(9013)

 

delivers

Unicahr.JPG

 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:

Icon Table.JPG

Set the Image URL column to type "Image URL"

imagr Url.JPG

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:

Result.JPG

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






PaulDBrown
Community Champion
Community Champion

you can use UNICHAR to customise icons

 

https://docs.microsoft.com/en-gb/dax/unichar-function-dax 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Anonymous
Not applicable

@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?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Anonymous
Not applicable

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. 

 arrow3.PNGequal.PNGarrow2.PNGarrow1.PNG

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.