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

Announcements
Save an extra $150 Dec 1–7 with code CYBERWEEK - stackable with early bird savings: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Need help to connect table

Please help me to connect the below table, attached sample data

testqlik.PNG

3 Replies
vishsaggi
Champion III
Champion III

As your tables has same no and same field names autoconcatenation happens. Just load them like

LOAD ID,

     Name

FROM

[..\Desktop\Test.xlsx]

(ooxml, embedded labels, table is Table1);

LOAD ID,

     Name

FROM

[..\Desktop\Test.xlsx]

(ooxml, embedded labels, table is Table2);

LOAD ID,

     Name

FROM

[..\Desktop\Test.xlsx]

(ooxml, embedded labels, table is Output);

Anonymous
Not applicable
Author

I need to Concatenate Table1 and Table 2 and get output

Anil_Babu_Samineni

How about this?

LOAD ID,

     Name

FROM

[Test.xlsx]

(ooxml, embedded labels, table is Table2) ;

Concatenate

LOAD ID,

     Name

FROM

[Test.xlsx]

(ooxml, embedded labels, table is Table1) Where Not Exists(Name);

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful