Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Fanch
Partner - Creator
Partner - Creator

compare the values of 2 tables

Hi everybody, 

Hope you are doing well 😎

I load in my script Two tables, one with the id of the last mont and the other with the id of the current month like this :

MyTables.JPG

I want to create two tables on my script with the id that is removed and the other with the ID that is appears with a result like this :

Result.JPG

I have tried many functions (Lookup, Applymap ...) without a good result 🙄

Can you help me ? How i can create this two tables OLD ID and NEW ID ?

Thanks a lot !

Fanch

1 Solution

Accepted Solutions
Fanch
Partner - Creator
Partner - Creator
Author

Thanks a lot JuanGerardo, 

Very good exemple !!!! 💪

View solution in original post

2 Replies
JuanGerardo
Partner - Specialist
Partner - Specialist

Hi @Fanch , I recommend to use an outer join and then get what you want:

All:

Load

   ID_MONTH,

   True() AS FromLast

Resident ID_LAST_MONTH;  // Or from your datasource

Outer Join

Load

   ID_MONTH,

   True() AS FromNew

Resident ID_CURRENT_MONTH;  // Or from your datasource

 

Result:

Load

   ID_MONTH,

   If(FromLast and not FromNew, 'Old ID',

      If(FromNew and not FromLast, 'New ID', 'Both') AS Status

Resident All;

Drop Table All;

 

JG

Fanch
Partner - Creator
Partner - Creator
Author

Thanks a lot JuanGerardo, 

Very good exemple !!!! 💪