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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
marksmunich
Creator III
Creator III

generating QVD from xls

Hello,

How to create a QVD file from .xls file.

what script must be used to perform this task.

Mark

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Just a load and a store command:

Table1

Load * from ...myexcelfile...;

Store Table1 into myqvdfile;


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Just a load and a store command:

Table1

Load * from ...myexcelfile...;

Store Table1 into myqvdfile;


talk is cheap, supply exceeds demand
Sokkorn
Master
Master

Hi,

Suppose that your qvw and excel in the same directory.

[ExcelData]:

Load * from MyExcel.xlsx;

Store [ExcelData] Into MyQVD.qvd;

Regards,

Sokkorn

Not applicable

table1:

load

id,

name,

address

from table1;

store table1 into D:\ table1.qvd;