0
0
Tableaubi_tool~20 mins

URL actions in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
URL Actions Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding URL Action Parameters

In Tableau, you want to create a URL action that passes the selected Customer ID to an external web page. Which URL syntax correctly passes the parameter?

Ahttp://example.com/customer?ID=<Customer ID>
Bhttp://example.com/customer?ID='Customer ID'
Chttp://example.com/customer?ID=[Customer ID]
Dhttp://example.com/customer?ID={{Customer ID}}
Attempts:
2 left
💡 Hint

Tableau replaces field names inside angle brackets with their values.

dax_lod_result
intermediate
2:00remaining
URL Action with Multiple Parameters

You want to create a Tableau URL action that passes both Order ID and Region to a web page. Which URL will correctly pass both parameters?

Ahttp://example.com/orders?OrderID=<Order ID>&Region=<Region>
Bhttp://example.com/orders?OrderID=[Order ID]&Region=[Region]
Chttp://example.com/orders?OrderID={{Order ID}}&Region={{Region}}
Dhttp://example.com/orders?OrderID='Order ID'&Region='Region'
Attempts:
2 left
💡 Hint

Remember to use angle brackets for field substitution in Tableau URL actions.

visualization
advanced
2:30remaining
Designing a Dashboard with URL Actions

You have a sales dashboard with a map and a sales table. You want to add a URL action that opens a detailed report for the selected state in a new browser tab. Which setting should you choose for the URL action to open the link in a new tab?

ASet the URL action to 'Run on Menu' and leave 'Open URL in new browser tab or window' unchecked.
BSet the URL action to 'Run on Select' and leave 'Open URL in new browser tab or window' unchecked.
CSet the URL action to 'Run on Hover' and check 'Open URL in new browser tab or window'.
DSet the URL action to 'Run on Menu' and check 'Open URL in new browser tab or window'.
Attempts:
2 left
💡 Hint

Opening in a new tab requires a specific checkbox in the URL action settings.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting URL Action Parameter Passing

A Tableau URL action is not passing the Product Category parameter correctly. The URL is set as:

http://example.com/products?category=[Product Category]

What is the most likely reason the parameter is not passed?

AThe URL must use curly braces {{}} around the field name.
BSquare brackets [] are not recognized for field substitution in Tableau URL actions.
CThe field name must be in single quotes 'Product Category'.
DThe URL action must be set to 'Run on Hover' to pass parameters.
Attempts:
2 left
💡 Hint

Check Tableau's syntax for inserting field values in URL actions.

🎯 Scenario
expert
3:00remaining
Creating a Dynamic URL Action with Conditional Logic

You want to create a Tableau URL action that opens different web pages based on the Region selected. If the region is 'West', it should open http://west.example.com, otherwise http://default.example.com. Which calculated field expression correctly creates the URL for this action?

A"http://" & IF [Region] = 'West' THEN 'west.example.com' ELSE 'default.example.com' END
B"http://" + IF [Region] = 'West' THEN 'west.example.com' ELSE 'default.example.com' END
CIF [Region] = 'West' THEN 'http://west.example.com' ELSE 'http://default.example.com' END
DCASE [Region] WHEN 'West' THEN 'http://west.example.com' ELSE 'http://default.example.com' END
Attempts:
2 left
💡 Hint

Tableau calculated fields use THEN and END keywords for IF statements.