Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

If an excel file contains multiple sheets with different data\table . how to create a qvd for each sheet present in that excel file?

If an excel file contains multiple sheets with different data\table . how to create a qvd for each sheet present in that excel file?

2 Replies
maxgro
MVP
MVP

set s='Sheet1','Sheet2','Sheet3';

for each i in $(s);

  $(i):

     LOAD   *

     FROM [Book1.xlsx] (ooxml, embedded labels, Table is [$(i)]);

     store $(i) into $(i).qvd (qvd);

     DROP Table $(i);

next

maxgro
MVP
MVP