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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
rajeshvaswani77
Specialist III
Specialist III

NOT IN Queries

Hi All,

     We are creating Qlikview dashboards based on some existing queries. I find a Query like

Query NOT IN (Query)

How do i Iterpret this in QlikView to get similar results?

Thanks in advance,

Rajesh Vaswani

Labels (1)
1 Solution

Accepted Solutions
Not applicable

You could do like below.

Step1: Load Data from Your Inner / Sub Query

Sql Select FieldA From TableA;

2nd Step : Load Data from Your Oter Quert and use Where Not Exists() function to do the job for you.

Load * where Not Exists(FieldA);

Sql Select * from TableB;

Hope this helps you.

- Sridhar

View solution in original post

1 Reply
Not applicable

You could do like below.

Step1: Load Data from Your Inner / Sub Query

Sql Select FieldA From TableA;

2nd Step : Load Data from Your Oter Quert and use Where Not Exists() function to do the job for you.

Load * where Not Exists(FieldA);

Sql Select * from TableB;

Hope this helps you.

- Sridhar