Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to extract multiple files in qlikview?

Hi all,

I am new to qlikview. anyone can help me.

1 Solution

Accepted Solutions
agilos_mla
Partner - Creator III
Partner - Creator III

Hi Murali,

It can depends on how look like the files.

If always the same data structure and filenames are built with naming convention you can insert * in the load statement:

ie. My files are DataFile_2012.xlsx, DataFile_2013, DataFile2014, i can use : DataFile_*.xlsx

LOAD   *

FROM [DataFile_*.xlsx]

(ooxml....)

Michael

View solution in original post

2 Replies
agilos_mla
Partner - Creator III
Partner - Creator III

Hi Murali,

It can depends on how look like the files.

If always the same data structure and filenames are built with naming convention you can insert * in the load statement:

ie. My files are DataFile_2012.xlsx, DataFile_2013, DataFile2014, i can use : DataFile_*.xlsx

LOAD   *

FROM [DataFile_*.xlsx]

(ooxml....)

Michael

Not applicable
Author

Thanks Michael