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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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