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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Excluding values of >one field in script

Hi All

I need values of net where Type<>a,b,c and remaining fields are needed,how can I write condition for this in script with where clause.I tried something like where Type<>'a' or 'b' or 'c',but it is not working

1 Solution

Accepted Solutions
devarasu07
Master II
Master II

Hi,

you can try like below

     Load

          *

     From datasource

     Where not WildMatch(Type,'A','B','C);

Hope this helps

Thanks,Deva

View solution in original post

2 Replies
devarasu07
Master II
Master II

Hi,

you can try like below

     Load

          *

     From datasource

     Where not WildMatch(Type,'A','B','C);

Hope this helps

Thanks,Deva

Anonymous
Not applicable
Author

Thank you,it's working fine