Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I installed the Visual 'Image Viewer'. I have a filter with 3 options and each selected option changes the image displayed in Visual. However, there is a catch, when there is no option selected in the filter, Visual shows an image (first or last), but I need that when nothing is selected, Visual does not display any images. As you can see in the images, when there is no selection, Visual displays the image of 'dislike'. Has anyone ever experienced this ?
Hi @Anonymous,
is your problem solved?
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @Anonymous
If you need to ensure that an image is displayed only if a single selection is made on the slicer, you could do something like this:
Slicer single selection =
INT ( CALCULATE ( HASONEVALUE ( SlicerTable[SlicerColumn] ), ALLSELECTED () ) )
This measure returns 1 only if a single selection is made on the slicer (I'm assuming there are always at least 2 options available).
Does that work for you?
Regards,
Owen
Hi @Anonymous ,
try this Measure:
Selected Image = SELECTEDVALUE(Images[Image],"https://upload.wikimedia.org/wikipedia/commons/c/ca/1x1.png")
You may download my PBIX file from here.
Hope this helps.
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials