What is the main purpose of creating parameters in Tableau?
Think about how parameters let users interact with the dashboard.
Parameters let users input or select values that can change calculations, filters, or reference lines dynamically.
Given a parameter named Sales Threshold set to 5000, what will this calculated field return?
IF SUM([Sales]) > [Sales Threshold] THEN "Above" ELSE "Below" END
Consider how the parameter value is compared to the sum of sales.
The parameter value 5000 is used as a threshold. Regions with sales above 5000 return "Above", others "Below".
You want to add a reference line on a sales chart that users can adjust. Which step correctly uses a parameter for this?
Think about how parameters allow user control over reference lines.
Creating a parameter and using it as the value for a reference line lets users adjust the line dynamically.
How do parameters affect the underlying data model in Tableau?
Consider if parameters change the data itself or just how it is used.
Parameters do not alter the data model or source; they only influence calculations, filters, or visual elements dynamically.
You created a parameter and a calculated field using it, but changing the parameter does not update the visualization. What is the most likely cause?
Think about what must be present in the view to see parameter effects.
If the calculated field using the parameter is not in the visualization, changing the parameter won't affect what is shown.