Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
BeginnerBI
Helper I
Helper I

Display 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 breeds of dogs.

Example Workflow:

  1. The user selects "Chicago" from the slicer.
  2. Chicago has 5 customers:
    • 2 customers made purchases over $300.
    • 2 customers made purchases over $500.
    • 1 customer made a purchase of $1000.
  3. Based on these purchases:
    • For purchases over $300, show a Corgi.
    • For purchases over $500, show a Golden Retriever.
    • For the $1000 purchase, show a Doberman.

Outcome: Once the store is selected, 3 dog images will be displayed, corresponding to the different purchase tiers.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @BeginnerBI 

You can use the Image Grid custom visual:

Sample table:

vjialongymsft_0-1727663872726.png

Visual settings:

vjialongymsft_1-1727663936923.png

 

 

Result:

vjialongymsft_2-1727663962146.png
vjialongymsft_3-1727663969683.png

 

 

 

 

Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @BeginnerBI 

First, create a table that includes different dog breeds and their corresponding images.

vjialongymsft_0-1726710527034.png


Set the picture column to the image URL format.

vjialongymsft_1-1726710598123.png


 

Create a new table that includes stores and the amount spent.

 

vjialongymsft_2-1726710678386.png

 

Create a new column:

 

Breed = IF([purchases] > 1000 ,"Doberman",IF([purchases]>500,"Golden Retriever","Corgi"))

 

Create a new relationship:

 

vjialongymsft_3-1726710764867.png

 

 

Result:

vjialongymsft_4-1726710841239.png

 

 

 

 

 

 

 

 

 

 

 

Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Jayleny,

 

Thank you so much but what I have been trying to do is have one selection and instead see multiple rows and I would like to have multiple images.  when I click chicago dinamycally display the count of record for those breeds in that location.  Chicago have 5 doberman and 2 corgies, I select and pop up 7 images.  I'm not sure if this is possible. but it is like the vision for the scope.

Anonymous
Not applicable

Hi @BeginnerBI 

You can use the Image Grid custom visual:

Sample table:

vjialongymsft_0-1727663872726.png

Visual settings:

vjialongymsft_1-1727663936923.png

 

 

Result:

vjialongymsft_2-1727663962146.png
vjialongymsft_3-1727663969683.png

 

 

 

 

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
Super User
Super User

Hi @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. 
 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.