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: 
Luis_Gueerero13
Contributor II
Contributor II

Loading data

When I load my information I have to store everything in the same table “HomeDepot_1” but I don’t understand why a table loads it to “HomeDepot_1-1” this started to happen without any reason.

Luis_Gueerero13_0-1630965094766.png

 

3 Replies
rwunderlich
MVP
MVP

It is likely because you are loading using 

LOAD *

And the files have a different number of columns. 

-Rob

Luis_Gueerero13
Contributor II
Contributor II
Author

So what can I do to make it not happen?

rwunderlich
MVP
MVP

Use the Concatenate prefix to force load into a single table. But first you'll have to create a table to name in the Concatenate().

HomeDepot:
LOAD 0 as DummyField AutoGenerate 0; 

Concatenate (HomeDepot)
LOAD *
From lib://Exceles/blah blah/*.xlsx;

Drop Field DummyField;

-Rob