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

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