Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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!