0
0
Tableaubi_tool~20 mins

Parameter actions in Tableau - Practice Problems & Coding Challenges

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

In Tableau, what happens when you use a parameter action to select a value on a dashboard?

Choose the correct description of the effect.

AThe parameter action changes the data source connection to a different database.
BThe parameter action filters the data source directly, removing unselected data from the dashboard.
CThe parameter action creates a new calculated field that replaces the original data source.
DThe parameter value updates dynamically based on the selected mark, affecting all views using that parameter.
Attempts:
2 left
💡 Hint

Think about what parameters do in Tableau and how parameter actions update their values.

dax_lod_result
intermediate
2:00remaining
Parameter Action Impact on Calculated Field

Given a Tableau parameter named SelectedCategory with values: 'Furniture', 'Office Supplies', 'Technology'. A calculated field uses this parameter as:

IF [Category] = [SelectedCategory] THEN [Sales] ELSE 0 END

If the parameter action sets SelectedCategory to 'Technology', what is the sum of this calculated field for the data below?

Category       Sales
Furniture     100
Office Supplies 200
Technology    300
Technology    150
A450
B300
C250
D0
Attempts:
2 left
💡 Hint

Sum sales only where Category matches the parameter value.

visualization
advanced
2:00remaining
Designing a Dashboard with Parameter Actions

You want to create a dashboard where clicking on a bar chart updates a map to show sales for the selected region using a parameter action. Which setup is correct?

ACreate a filter action on the bar chart that filters the map directly by Region, no parameter needed.
BCreate a parameter for Region, set a parameter action on the bar chart to update this parameter, then use the parameter in a filter on the map view.
CCreate a calculated field that hardcodes the region, then use a parameter action to update the map data source connection.
DUse a parameter action to change the color palette of the map based on the selected bar.
Attempts:
2 left
💡 Hint

Parameter actions update parameters, which can be used in calculations or filters.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Parameter Action Not Updating

You created a parameter action to update a parameter when clicking a mark, but the parameter value does not change. Which is the most likely cause?

AThe parameter is set to allow multiple values instead of a single value.
BThe data source is missing a join between tables.
CThe parameter action is not assigned to the correct source sheet or target parameter.
DThe dashboard filter is set to exclude the selected value.
Attempts:
2 left
💡 Hint

Check the parameter action configuration carefully.

🎯 Scenario
expert
3:00remaining
Complex Parameter Action Scenario

You have a dashboard with a parameter SelectedYear and two views: a line chart showing sales over months and a table showing detailed sales data. You want the user to click on a month in the line chart to update SelectedYear and filter the table to show sales only for that year. However, clicking the month does not update the table. What is the best approach to fix this?

AEnsure the parameter action updates <strong>SelectedYear</strong> from the month field, and the table uses a calculated field referencing <strong>SelectedYear</strong> to filter data.
BReplace the parameter action with a filter action directly filtering the table by month.
CCreate a new parameter for month and link it to the table filter instead of <strong>SelectedYear</strong>.
DUse a dashboard action to refresh the data source after clicking the month.
Attempts:
2 left
💡 Hint

Parameters do not filter data directly; they must be used in calculations or filters.