Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mhmmd_srf
Creator II
Creator II

IN/Not IN in Qlik Script

Hi All,

This is in Qlikview.

I am writing a script where data is loading from qvd.

Now I want to put condition like below:

where Product_Key not in (5,6)

It is not working. Even Not Exists also not working How to handle this.

Please help.

Thanks,

Sarif

1 Solution

Accepted Solutions
marcus_sommer

Try this:

where not match(Product_Key, 5,6);

- Marcus

View solution in original post

1 Reply
marcus_sommer

Try this:

where not match(Product_Key, 5,6);

- Marcus