Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help with Join and resident tables

Hi,

I am trying to join 2 tables into 1 table, using the 'Join'.

Then I want to use this 1 table, to create another table using Resident.

My qvw only has about 10 000 or so records, but carry's on running past 10 000 when it starts on the Resident table.

Any suggestions as to what could be the problem with my script?

I've attached the sample I am working on.

Much appreciated!

Xena

3 Replies
Not applicable
Author

Hi Xena,

This is the code I suppose is the right one (the join will be done using the Ord field):


FITEM:
LOAD Day,
FITEM,
Month,
ord,
OSTAT,
planner,
SHPKT,
SSTDT,
Year

FROM
C:\Users\Guest\Desktop\ALL.xlsx
(ooxml, embedded labels, table is Sheet1);
INNER JOIN
//CITEM:
LOAD ord,
ACREC,
CITEM,
cstart,
CUROP,
ODUDT,
ORDNO,
ORQTY,
OSNOA,
PLANN,
SEQD

FROM
C:\Users\Guest\Desktop\ALL.xlsx
(ooxml, embedded labels, table is Sheet1);


I hope this helps you.

Best regards.

Not applicable
Author

Or depending on what you want with the JOIN, you can also use a LEFT JOIN, RIGHT JOIN or OUTER JOIN.

Not applicable
Author

You can also use concatenate (table name) if you are just wanting to merge two tables together but not "limit" data.