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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
lorenzo_gibbo
Contributor III
Contributor III

create table with value that not match

Hi,

how can I create a table with the values ​​from other two, but only  with the value that not match?

EX:

TABLE A:

A

B

C

TABLE B:

A

C

D

E

TABLE RESULT:

B

D

E

thanks

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try:

TableA:

load *,1 as A inline [

FieldName

A

B

C

];

join

load *, 1 As B inline [

FieldName

A

C

D

E

];

Result:

Load FieldName

Resident TableA

where A <> B;

//optional: drop table TableA;

If you mean to that you want to create this as a straight table in the UI then look at this discussion.


talk is cheap, supply exceeds demand