Skip to content

[BUG] HTML Content visual not rendering image URLs in Power BI #137

@Carol266

Description

@Carol266

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 () also fails to display.

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!

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions