Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have got to use binary in some visuals with the process explained in this blog:
https://www.blue-granite.com/blog/simple-steps-to-embed-images-in-power-bi
However, I have failed to use a binary image in the card browser visual. The image is not shown.
Does the card browser only admits hyperlinks to online images?
Is there a workaround so card browser admits the format: "data:image/png;base64, " & [BinaryToText] that other visuals admit?
Regards!
Thanks
Nacho
Solved! Go to Solution.
Hi @Anonymous,
Yes - it works fine. I did a quick mockup using a data URL and it loads, e.g.:
I checked the source code and it just uses a plain image URL in HTML/CSS so as long as the data URL is valid, you'll be fine.
The part the visual does not like in your expression is this:
, "
You are adding a space character after the comma and this doesn't generate a valid URL. If you remove it, it will be okay. For completeness, here's what worked for me (taking yours as an example):
DAX
ImageURL = "data:image/png;base64," & [BinaryToText]
M (Power query) Custom Column
"data:image/png;base64," & [BinaryToText]
Hopefully this is all you need 🙂
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi @Anonymous,
Yes - it works fine. I did a quick mockup using a data URL and it loads, e.g.:
I checked the source code and it just uses a plain image URL in HTML/CSS so as long as the data URL is valid, you'll be fine.
The part the visual does not like in your expression is this:
, "
You are adding a space character after the comma and this doesn't generate a valid URL. If you remove it, it will be okay. For completeness, here's what worked for me (taking yours as an example):
DAX
ImageURL = "data:image/png;base64," & [BinaryToText]
M (Power query) Custom Column
"data:image/png;base64," & [BinaryToText]
Hopefully this is all you need 🙂
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Yes, that was the problem. It works now. Thanks for the help!
Regards!
Nacho
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
2 | |
2 | |
2 | |
1 | |
1 |