Connecting parameter to Image URL

Hi

I have an image URL for each client.
I have the parameter ‘Client’. I want to display image for each client, when that particular client is selected from the drop down . How to do this ?

Hey @liya101 ,

One way would be to create an image URL field for each customer, layer them on top of each other and use the parameter as a rule to only show the matching image.
Another way would be, and I’m not 100% sure it would work, to create a dynamic parameter depending on who is using the dashboard sees a different image, but that may not be your use-case.
I don’t think there is a way to put a URL after a string name yet, but that would be gerate addition :slight_smile:

1 Like

Hi @liya101
lets say your URL is “https://something.com/liya101” and in the parameter you can select “liya101”, right?!

You could create a calculated field “BILD”

concat("https://something.com/",${Client})

Use the BILD field in a table visual and format “url as image”.

Or just use a custom visual with the first URL part and add the parameter, too

grafik

BR