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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

load all QVD files in filesystem folder

Hello experts,

I need to load in a single table all QVD files located in a filesystem folder.

I'd expect to have a new QVD file for each year season.

How can I achieve it?

Thanks in advance

Best regards

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Here you are a possible solution:


for each File in filelist ('c:\Docs\*.qvd')
Load *
from $(File);
next File


Best regards.

View solution in original post

2 Replies
Not applicable
Author

Hi,

Here you are a possible solution:


for each File in filelist ('c:\Docs\*.qvd')
Load *
from $(File);
next File


Best regards.

Not applicable
Author

thanks very much