Forum Discussion
BeginnerBI
Helper I
1 year agoDisplay dynamically multiple images in the selected value.
Hello, and thanks in advance. Objective: Allow the user to select a store from a dropdown slicer. Based on the selection, display images representing customer purchase amounts with different bree...
- Anonymous1 year ago
Hi BeginnerBI
You can use the Image Grid custom visual:
Sample table:
Visual settings:Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Selva-Salimi
Solution Sage
1 year agoHi BeginnerBI
I am not sure if I understand your expectation. but based on my understanding you can write a measure as follows:
if (sum(purchase)>=300, "🐶", if( sum(purchase)>=500 "🦮" , .... )
for other you can search for emojies and icon.
If this post helps, then I would appreciate a thumbs up and mark it as the solution to help the other members find it more quickly.