Forum Discussion
cmcgo3
Helper II
2 years agoURL Images Based on Slicer Selection
Hello, I cannot resolve this issue. I have three tables, Country, State_Province, and City. Each slicer selection represents an image. The images for Country show image, but when filtering dow...
PijushRoy
Community Champion
2 years agoHi cmcgo3
Please find the attached PBIX file
Use below measure, change it if require
Use the measure in the new card visual.
Please note, that your all measure are not in the same size.
Measure = SWITCH(
TRUE(),
ISFILTERED('City List'[City]),SELECTEDVALUE('City List'[url image]),
ISFILTERED('State_Province List'[State or Province]),SELECTEDVALUE('State_Province List'[url image]),
ISFILTERED('Country List'[Country]),SELECTEDVALUE('Country List'[URL]),
Blank())
Image changing as per slicer
https://drive.google.com/file/d/1gmW9QJAeJmDJoiXOpCtGw2o0-eV4iI9Z/view?usp=sharing
If solved your requirement, please mark this answer as SOLUTION. appreciate your THUMBUPS 👍⬇️
Thanks
Pijush