-
-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Hello,
I’m using the HTML Content (by Daniel Marsh-Patrick) visual in Power BI Desktop/Service to display images through dynamically generated HTML.
The DAX measure correctly outputs the HTML (verified in the editor), but the images are not rendered — the visual remains blank.
Here’s an example of the DAX code:
Colaboradores_HTML =
VAR HtmlHeader = ""
VAR HtmlImages =
CONCATENATEX(
'Premiações',
"<img src='" & 'Premiações'[URL_Imagem_Teste] & "' width='80'>",
UNICHAR(10)
)
VAR HtmlFooter = ""
RETURN HtmlHeader & HtmlImages & HtmlFooter
I’ve already checked the following:
The Data Category of the measure is set to Uncategorized;
I’m using HTML Content v1.6.0.0;
The image URLs open correctly in the browser (e.g. https://i.imgur.com/n827oUZ.png);
A basic test measure (
Despite all of this, the visual still shows a blank output.
Could you please check if there’s a known limitation or recent change preventing external image rendering?
Thank you in advance!