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: 
engishfaque
Specialist III
Specialist III

Table Subtraction - where items not exist

Dear All,

I have two tables called Table A and Table B or vice versa. And I have to subtract items and find unique items from Table B from both tables such as given below tables.

Table A

      

Itmes
ADF-JPS-001
ADF-JPS-001-ZZ0
ADF-JPS-001-ZZ1

Table B

Itmes
ADF-JPS-001
ADF-JPS-001-ZZ0
ADF-JPS-001-ZZ1
NR-87913
NI-R6501-ZZ8

Required output:

Itmes
NR-87913
NI-R6501-ZZ8

Kind regards,

Ishfaque Ahmed

Labels (1)
1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

T1:

Load * From Table1;

NoConcatenate:

T2:

Load * From Table2 where not exists(Items);

Drop Table T1;

View solution in original post

1 Reply
MK_QSL
MVP
MVP

T1:

Load * From Table1;

NoConcatenate:

T2:

Load * From Table2 where not exists(Items);

Drop Table T1;