Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

To join or not to join

Good morning.  I have two tables in my load script...Sales History and Item Master.  I want to create a third table that takes the Item Number from Sales History and concatenates it with the Item Description from Item Master ultimatley resulting in a "Item Number Name" field.  Can someone please recommend the best way to do this?  All of this needs to be done in my load script.  I would like to do this using Resident loads.  Thanks.

2 Replies
jagan
Luminary Alumni
Luminary Alumni

Load the two tables Sales History and Item Master.  And then join the two tables and use Resident to form the key.

Regards,

jagan.

Not applicable
Author

Let's say I do the following:

Table1:

Load

ItemNumber

Resident SalesHistory;

LEFT JOIN (Table1)

Load:

ItemNumber,

ItemDescription

Resident ItemMaster;

Will this get the trick done?  If so where do I then add my new concatenated field?  Field would be ItemNumber & ' - ' & ItemDescription