Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to generate qvd files?

hi guys

I  want to generate qvd files in qlikview .I do not know how to generate qvd files in qlikview please tell me out.

Regards:

madhu

18 Replies
its_anandrjs

You have to write

STORE tablename into tablename.qvd;

thats it

Eg:-

Tablename:

load * inline

[

Products

A

B

C

];

Store Tablename into Tablename.qvd;

Or

Store Tablename into D:\QVDLocation\Tablename.qvd;

Or

By any variable also

Let vPath = 'D:\QVDLocation\';

then use for qvd creation

Store Tablename into $(vPath)Tablename.qvd;

Drop table Tablename;

MK_QSL
MVP
MVP

TableName:

Load

     FieldName1,

     FieldName2,

     ......

     ......

From FileName;

Store TableName into 'C:\Data\TableName.qvd' (QVD);

Not applicable
Author

Ex:

Table:

Load *

From YourSourceFile;

Stoe Table into Yourwish.qvd;

Not applicable
Author

Hi,

In script:

STORE Table into QVDFile.qvd;

You can also export data from an object in qvd format (right click, export etc)

Hope this helps

Not applicable
Author

ok anand send to me one example of qvd.how to write that ple tell me

Not applicable
Author

thank you anand

ThornOfCrowns
Specialist II
Specialist II

I didn't know that Pierre de Calan, thanks!

Not applicable
Author

thank you manish

Not applicable
Author

Thank you Ravi.