In Tableau, what happens when you use a parameter action to select a value on a dashboard?
Choose the correct description of the effect.
Think about what parameters do in Tableau and how parameter actions update their values.
Parameter actions allow users to change the value of a parameter by interacting with the dashboard. This updated parameter value can then be used in calculations or filters, affecting all views that reference it.
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
Sum sales only where Category matches the parameter value.
The calculated field returns sales only for rows where Category equals 'Technology'. The sales for Technology are 300 + 150 = 450.
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?
Parameter actions update parameters, which can be used in calculations or filters.
Parameter actions update the parameter value based on user interaction. The parameter can then be used in a filter or calculation to update the map view accordingly.
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?
Check the parameter action configuration carefully.
If the parameter action is not linked to the correct source sheet or target parameter, it will not update the parameter value when interacting with the dashboard.
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?
Parameters do not filter data directly; they must be used in calculations or filters.
Parameter actions update the parameter value, but the views must use that parameter in calculations or filters to reflect changes. The table should filter data based on a calculated field that references SelectedYear.