Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I'm encountering an issue with my Simple Image visual. It's set to display only when a value is selected from the "Sim ID" slicer. This works perfectly until I select a value in the slicer and then deselect it; the Simple Image visual persists.
I've implemented a measure named "Show Simple Image" as follows:
Attached is my TEST Power BI file, I desperately need help in fixing this.
Could you assist me in resolving this issue?
Hi @mehlenbae2
Unfortunately the Simple Image visual appears a bit buggy in that it can get stuck on the last image displayed.
You might have more success with the HTML Content visual.
In the attached PBIX I have created a second page to test that visual.
I created a column Image HTML for this purpose:
Image HTML =
"<img style='width: 100%; height: 100%; object-fit: contain;' src='" & Campaigns[Image URL] & "'/>"
and the measure Show Image used as a visual-level filter:
Show Image =
IF (
ISFILTERED ( 'Campaigns'[Sim ID] ) && NOT ISFILTERED ( Campaigns[Date].[Year] ),
1,
0
)
The image display appears to work as expected, but you can tweak the above as needed (especially the HTML 🙂 ).
Regards
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.