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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load multiple files in QlikSense

Hi,

In qlikview I load several CSV in one table with *

FROM

(txt, codepage is 1252, embedded labels, delimiter is ';', msq);

What is the equivalent for QlikSense?

1 Solution

Accepted Solutions
vlad_komarov
Partner - Specialist III
Partner - Specialist III

It works pretty much the same way in QS:

LOAD

*

FROM [lib://ExternalData/TB\MultConv_TB_*.txt]

(txt, codepage is 1252, embedded labels, delimiter is '|', msq)

;

View solution in original post

3 Replies
vlad_komarov
Partner - Specialist III
Partner - Specialist III

It works pretty much the same way in QS:

LOAD

*

FROM [lib://ExternalData/TB\MultConv_TB_*.txt]

(txt, codepage is 1252, embedded labels, delimiter is '|', msq)

;

Not applicable
Author

Thanks Vladimir!