Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Fab62400
Contributor II
Contributor II

filter pane exclusive

Hello,

Is it possible to have a filter pane in exclusive mode ?

And how to define a list and connect it to a field?
For example:
I have a filter containing a list of data but I wouldn't want all of the data to appear.
How to do ?

Thank you for your help

 

 

7 Replies
Chanty4u
MVP
MVP

can you explain  bit more. do you want to exclude any values from the filter ?

Fab62400
Contributor II
Contributor II
Author

no I want to select only one data.

Fab62400
Contributor II
Contributor II
Author

that is for the first question.
For the 2nd question, yes I want to exclude some data.

MayilVahanan

Hi @Fab62400 

Try like below in filter pane expression

=if(not Match(fieldName,'a','b'), fieldName)

it will exclude value a & b in field name and display the remaining values

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
MayilVahanan

Hi @Fab62400 

Or, create a new field in the script with exclude few values

Load *, if(not Match(fieldName,'a','b'), fieldName) as NewFieldName from ursource;

And use that field in the filter pane and check always one selectedvalue. 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Fab62400
Contributor II
Contributor II
Author

ok Thank you , i will try.

Fab62400
Contributor II
Contributor II
Author

Great it works  ! thank you.

and for my second question, do you have an idea?