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?
Tableau replaces field names inside angle brackets with their values.
Tableau URL actions use <Field Name> syntax to pass the value of the field. Option A correctly uses <Customer ID> without quotes or brackets.
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?
Remember to use angle brackets for field substitution in Tableau URL actions.
Option A correctly uses <Order ID> and <Region> to pass values. Other options use invalid syntax for Tableau 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?
Opening in a new tab requires a specific checkbox in the URL action settings.
Option D correctly sets the URL action to run on menu and enables the option to open the URL in a new tab or window. Other options either do not open in a new tab or use less appropriate triggers.
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?
Check Tableau's syntax for inserting field values in URL actions.
Tableau uses angle brackets <> for field substitution in URL actions, not square brackets []. Option B correctly identifies the syntax error.
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?
Tableau calculated fields use THEN and END keywords for IF statements.
Option C correctly uses the IF statement with THEN and END to return the full URL string. Option C and C use invalid string concatenation syntax for Tableau. Option C uses CASE but misses the ELSE keyword syntax.