0
0
Tableaubi_tool~20 mins

Creating parameters in Tableau - Practice Exercises

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Parameter Pro in Tableau
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Purpose of Parameters in Tableau

What is the main purpose of creating parameters in Tableau?

ATo store large datasets for faster processing
BTo automatically refresh data sources on a schedule
CTo allow users to dynamically change values used in calculations or filters
DTo create static labels for charts and dashboards
Attempts:
2 left
💡 Hint

Think about how parameters let users interact with the dashboard.

dax_lod_result
intermediate
2:00remaining
Parameter Usage in Calculated Field

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
A"Below" for all regions regardless of sales
B"Above" for regions with sales over 5000, "Below" otherwise
CAn error because parameters cannot be used in calculated fields
D"Above" for all regions regardless of sales
Attempts:
2 left
💡 Hint

Consider how the parameter value is compared to the sum of sales.

visualization
advanced
2:30remaining
Dynamic Reference Line Using Parameter

You want to add a reference line on a sales chart that users can adjust. Which step correctly uses a parameter for this?

ACreate a parameter for sales value, then add a reference line using this parameter on the axis
BCreate a calculated field that sums sales and use it as a reference line without parameters
CAdd a filter to the chart using the parameter value instead of a reference line
DUse a fixed value for the reference line and update it manually when needed
Attempts:
2 left
💡 Hint

Think about how parameters allow user control over reference lines.

data_modeling
advanced
2:00remaining
Parameter Impact on Data Model

How do parameters affect the underlying data model in Tableau?

AParameters create new tables in the data model
BParameters modify the data source schema directly
CParameters filter the data model permanently
DParameters do not change the data model; they only affect calculations and visualizations
Attempts:
2 left
💡 Hint

Consider if parameters change the data itself or just how it is used.

🔧 Formula Fix
expert
3:00remaining
Parameter Not Updating Visualization

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?

AThe calculated field using the parameter is not added to the visualization
BThe parameter was created with the wrong data type
CParameters require a data source refresh to update
DThe parameter control is hidden on the dashboard
Attempts:
2 left
💡 Hint

Think about what must be present in the view to see parameter effects.