Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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

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;