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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sakamsureshbabu
Creator
Creator

load data

i have 10 branch data,each branch have below  table structher .

emp nodatesales amountqut
a

now i want to load this 10 tables i get synthetic loops.

how i am load this data.

2 Replies
Agis-Kalogiannis
Employee
Employee

Have you tried concatenating the tables by using the CONCATENATE (PrevTable) prefix?

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Make sure your tables have exactly the same number of fields with exactly the same case-sensitive field names. Or use the Concatenate keyword to force concatenation of the source data into one table.

T1:

LOAD * FROM table1;

concatenate(T1)

LOAD * FROM table2;

etc...


talk is cheap, supply exceeds demand