Reputation: 77
I have created the dashboard as the cascading filter(1 filter when selected affects the choice of other filters) which is working fine in attached Sample.
But I want that --> when I click on the house h2 within the sheet , that should get reflected in the drop down value .
eg: In the image below when I click on the h2 since the h2 has changed the value of other sheets as well --> I want the drop-down of filter to reflect "h2" as well instead of "All"
Upvotes: 0
Views: 276
Reputation: 156
You can achieve this functionality using a parameter and a calculated field.
Create a parameter "Selected house color" with data type "String". In the "Values" section enter all house color (h1, h2, h3, ....).
Create a calculated field as "Selected house color filter", in the formula section, enter the following formula:
IF [House color] = [Selected house color] THEN [House color] END
Add filter "Selected house color filter"
Add an action to update the parameter. In add action choose "Change Parameter." Name the action (e.g., "Select House Color").Select the bar chart as the source sheet. Choose "Select" as the action type. In the "Target" section, select the parameter you created earlier ("Selected house color"). In the "Run action on" section, select "Select" under "Clearing the selection will" option.
Upvotes: 1