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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenkumar_s
Creator II
Creator II

Get unmatched records

Hi frnds,

I have two seperate table table1 and table 2. i want to load the unmatched records from both table in load script as see the attachment below. Kindly share your knowledge.

Snap.png

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

t2:

load id, id as filter, name from Table2.

output:

Load id, name from Table1

where not exists(filter,id);

View solution in original post

4 Replies
Clever_Anjos
Employee
Employee

t2:

load id, id as filter, name from Table2.

output:

Load id, name from Table1

where not exists(filter,id);

Anil_Babu_Samineni

Looks for Exists - script function ‒ QlikView

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable

Please see attached example using Where Not Exists(ID,ID)

praveenkumar_s
Creator II
Creator II
Author

It is also working correctly.thanks for your help.