Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Only showing certain values in Filter Pane

Hi.

I am trying to show only exclusive values within the dimension in a filter pane
Whats the best way to do that?

1 Solution

Accepted Solutions
consultant_bi
Creator
Creator

the best solution is if and wild match combined

Sans titre.png

for example we want to display just the values that contains sony and toshiba so use this in expression formula :

=if(wildmatch(PRODNAME,'*Sony*'),PRODNAME,

if(wildmatch(PRODNAME,'*Toshiba*'),PRODNAME))

now the result is :

Sans titre2.png

View solution in original post

5 Replies
devarasu07
Master II
Master II

Hi,

you can try like this, (create a list box and add calculated dimension like below

if(Match(fieldname,'value'),'result-value')

example, Product dimension,

if(match(Product,'A','B'),'A','B')

or

if(WildMatch(Product,'A*','B*'),'A','B')

Thanks,Deva

consultant_bi
Creator
Creator

the best solution is if and wild match combined

Sans titre.png

for example we want to display just the values that contains sony and toshiba so use this in expression formula :

=if(wildmatch(PRODNAME,'*Sony*'),PRODNAME,

if(wildmatch(PRODNAME,'*Toshiba*'),PRODNAME))

now the result is :

Sans titre2.png

Anonymous
Not applicable
Author

Thank you so much. It worked!

Anonymous
Not applicable
Author

Thank you sir. This worked as well!

devarasu07
Master II
Master II

Hi,

Help to close this thread by marking as helpful and correct.thanks

Qlik Community Tip: Marking Replies as Correct or Helpful