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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to converts all excel files into qvds files at a time in real time senario?

Hi Friends,

For example

I have A,B,C,D,E,F,G,H,I,J,K & etc.. Excels file will be there in system. Now, i want convert all excel files at a time into QVDs files.

Could please explain and send code to this post.

1 Reply
alexandros17
Partner - Champion III
Partner - Champion III

You have to load all the xlsx files (if they have the same structure) then store into qvd.

here it is the code

let path = '..\..\qlik\myExcelFile_*.xlsx';

for each File in filelist (path)
MYTABLE:
LOAD
filed1,
field2,
...
fieldn
FROM
$(File) (ooxml, embedded labels, table is Foglio1);
next File

Store * from MYTABLE into MYTABLE.qvd;