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

Filter pane hide values

Hi,

in Filter pane to hide the values.

Actual values are : India,UK,USA,NZ      to hide NZ value.

i am using this expression:   

=Aggr(Only({<Evaluation={'India','UK','USA',}>}Evaluation),Evaluation)

working fine. but without mention the values like India,UK,USA to hide only NZ value.

help me thanks.

Labels (3)
2 Solutions

Accepted Solutions
MayilVahanan

Hi

Try like below

=Aggr(Only({<Evaluation={"*"}-{'NZ'}>}Evaluation),Evaluation)
or
=Aggr(Only({<Evaluation=-{'NZ'}>}Evaluation),Evaluation)

Both are same

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

View solution in original post

SunilChauhan
Champion
Champion

is that aggr realy required.Create a New Field like below and use in filterpane

 

Load if(Country<>'NZ',Country) as CountryNew,
Country;
Load * inline [
Country
India
UK
USA
NZ
];

Sunil Chauhan

View solution in original post

5 Replies
MayilVahanan

Hi 

Try like below

=Aggr(Only({<Evaluation-={'NZ'}>}Evaluation),Evaluation)

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

@nvijay5757  You can try the below code:

=Aggr(Only({<Evaluation-={'NZ'}>}Evaluation),Evaluation)

nvijay5757
Creator
Creator
Author

Hi,

Thanks for your reply.

when i select filter value showing only one value.

nvijay5757_0-1661318308550.png

 

MayilVahanan

Hi

Try like below

=Aggr(Only({<Evaluation={"*"}-{'NZ'}>}Evaluation),Evaluation)
or
=Aggr(Only({<Evaluation=-{'NZ'}>}Evaluation),Evaluation)

Both are same

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

is that aggr realy required.Create a New Field like below and use in filterpane

 

Load if(Country<>'NZ',Country) as CountryNew,
Country;
Load * inline [
Country
India
UK
USA
NZ
];

Sunil Chauhan