Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

restrict options in filter pane?

Hi

I want to add a filter pane to my page for region. For reasons I won't go into, some of our data doesn't generate the region properly and a small portion of the data has 'Not Identified' or something similar for this field.

I do not want this to be visible in the filter pane. How do I restrict the filter pane so I only see APAC, EMEA, North America, and South America?

Thanks

2017-10-16 12_52_25-Service Complaint Report - Dashboard _ Sheets - Qlik Sense.png

2 Replies
felipedl
Partner - Specialist III
Partner - Specialist III

Hi Dustin,

Do something like this on your dimension:

=if(match(region,'APAC','EMEA','North America','South America'),region,null())

This way, the other fields wont show in the filter.

NZFei
Partner - Specialist
Partner - Specialist

Felip's solution should work but I will create another table with valid regions in the script.

The reason is that even you have define a title for a filter:

When users make some selections, the current selection on the top will not show the filter title but the if clause, which is messy:

I will create a table in the script like this:

ValidRegion:

load * Inline [

region, Region

APAC, APAC

EMEA, EMEA

North America, North America

South America, South America

];

And use the Region as the filter in the front (the current field is region, which has the values you don't want to show).

Fei