Parameters in Tableau allow users to:
- A) Change filter values dynamically without editing the dashboard
- B) Automatically refresh data sources
- C) Create new data tables on the fly
- D) Export dashboards as PDFs
Which option best explains the user-driven flexibility provided by parameters?
Think about what users can control directly in the dashboard without needing to change the underlying data or structure.
Parameters let users input or select values that can change calculations or filters dynamically, making dashboards interactive and flexible.
You want users to choose between viewing 'Total Sales' or 'Profit' on a single chart using a parameter. Which approach correctly uses parameters to achieve this?
Think about how parameters can control calculations rather than data source connections or visibility.
Parameters can be used to switch between metrics by creating a calculated field that returns the value based on the parameter selection, enabling one chart to show different measures.
Consider a Tableau dashboard with a parameter 'RegionSelector' allowing users to pick a region. You want to show the average sales for the selected region using a Level of Detail (LOD) expression. Which calculated field expression correctly uses the parameter to filter the LOD?
{ FIXED : AVG(IF [Region] = [RegionSelector] THEN [Sales] ELSE NULL END) }Remember that FIXED without a dimension fixes at the entire data level, and you want to filter by the parameter value.
Option A fixes the calculation at the entire data level and uses the parameter to filter sales for the selected region, correctly showing average sales for that region.
You want to create a dashboard where users can select a start and end date using parameters to filter sales data dynamically. Which visualization design best supports this user-driven flexibility?
Think about how to allow users to pick any date range, not just predefined options.
Using two date parameters for start and end dates combined with a calculated field allows users to select any custom date range, making the dashboard flexible and interactive.
A dashboard uses a parameter to select a product category, but the sales chart does not update when the parameter changes. Which is the most likely cause?
Parameters alone do not filter data unless used in a calculation that is applied as a filter.
Parameters do not filter data by themselves. You must use them in a calculated field and place that field on the Filters shelf to affect the visualization.