Skip to main content
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