Reputation: 127
My goal is to create a drop down in Tableau and clicking on any option on the drop down would open a window based on the URL associated with the drop down option.
Is this achievable in Tableau?
Upvotes: 1
Views: 1256
Reputation: 1967
It is not possible to do exactly what you ask for in Tableau!
But you can achieve something close to it.
[one]
with the formula 1
. You might want to use any measure of your data set in case that works for you[Link Select]
as a string list, give it a "value" and a "display as" name that identify your links[link]
: CASE [Link Select] WHEN 'link1' THEN 'www.abc.com' WHEN 'link2' THEN 'www.def.com' END
[one]
to create a circular button and give it a suitabale label, eg. 'Click Me') then drag [link]
to the details pane[link]
field and change the settings to suit your needsIn the end you just need one click more after you choose from your parameter to go to the URL. Which in my opinion is better UI design anyway, because usually using a drop down, does not open a new link.
Upvotes: 4