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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
duddys
Helper I
Helper I

Checkmark emoji on raspberry pi

Hi,
so I encountered this problem, I have a visualization that has emojis in source. One of the emojis are this green checkmark, but when the report is shown on TV via raspberry pi, the emoji is just grey checkmark but I was told, its required to look like the original emoji. Anybody knows the most simple solution to my problem please?

Example data:duddys_0-1733231694170.png
24/02/2025
• 100% visual check on xy

8 REPLIES 8
v-nmadadi-msft
Community Support
Community Support

Hi @duddys 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the community members for the issue worked. If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.

 

Thanks and regards

v-nmadadi-msft
Community Support
Community Support

Hi @duddys 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If our responses has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.


Thank you.

v-nmadadi-msft
Community Support
Community Support

Hi @duddys 

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

 

v-nmadadi-msft
Community Support
Community Support

Hi @duddys  ,
Thanks for reaching out to the Microsoft fabric community forum.

Power BI visuals do not, inline SVG, or text with image tags within table or matrix cells. This means you cannot embed an image directly within a single string value and expect Power BI to parse or render it as HTML or rich content.

But Instead of using SVG we can add green checkmark by this below method

After adding the required value in columns field in table/Matrix visual
Picture1q.png

Go to cell elements in Format Visual,
 Picture2q.png

Switch on Icons and click on fx
Picture3q.png
Create a rule like this
Picture4q.png
You will get a table with green check marks
Picture5q.png
I hope this will meet your requirement.


If this post helps, then please consider Accepting as solution to help the other members find it more quickly and consider giving a KUDOS. Feel free to reach out if you need further assistance.
Thank you


Sorry for not responding, this isnt a solution for me, I need to edit it in the data, not to add another column or this shape, because in most cases the data is "date", checkmark and then some text, so its in the middle of the data.

Hi @duddys ,

Currently there is no direct feature available which can help with modifying the image colour, Please try modifying the data source or try modifying the TV settings to get the correct colour.
If the feature is important for your functionality Please consider sharing your suggestion in the Power BI Ideas forum
 Fabric Ideas - Microsoft Fabric Community,
where the product team actively monitors user feedback. Ideas with strong community support are more likely to be considered for future implementation. Posting there helps ensure your request reaches the right audience and contributes to shaping the product roadmap.

Thank you

pankajnamekar25
Memorable Member
Memorable Member

Hello @duddys 

 

You can use this DAX code make sure you will apply data type as Image URL

CheckMarkSVG =

IF(

    'Table'[Status] = "Complete",

    "<svg width='20' height='20' viewBox='0 0 24 24' fill='green' xmlns='http://www.w3.org/2000/svg'><path d='M20.285 6.709l-11.285 11.293-5.285-5.293 1.414-1.414 3.871 3.879 9.871-9.879z'/></svg>",

    ""

)

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

But I need to replace the emoji in the cells, with this new svg image, is it doable? Like here. the checkmark in the middle should be replaced with the svg -> 24/02/2025• 100% visual check on ST50

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.