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

Uploading multiple csv files

I am trying to upload multiple csv files of similar type ie. monthly sales data. How do I manage that without combining all the data into a single csv file - do I need to write a script?

2 Replies
Gysbert_Wassenaar

Perhaps you can use wildcard loading:

MyCSVData:

LOAD A, B, C ...etc

FROM [D:\CSVData\*.csv] (txt, ....etc);


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you! It worked perfectly