ContributionsMost RecentNewest TopicsMost LikesSolutionsHow to apply filters to customized drop-down list? Hi, I've built a drop-down list with customized values; please see below: "type": "Input.ChoiceSet", "id": "data.filters[0].filterJaql.members[0]", "class": "", "value": "", "displayType": "compact", "choices": [ { "title": "Rule 1 - Unauthorized expense for airfare", "value": "Rule1", "type": "Filters", "Filters": [ "filterName" ] }, { "title": "Rule 2 - Unauthorized expense for lodging", "value": "Rule2" }, Now, I want to apply filters/save filters to these rules I created. For example, when I select Rule 1 in my drop-down list and click on the 'Apply' button, the whole dashboard will be dynamically changed after the selection. But I really don't know where should I add the filters in...should I add them into the action or should I just save the filters to the value below the ChoiceSet (as you can see here I've added filterName into Rule 1 already but it did not work)? Can someone help please 😞