Skip to main content
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
Not applicable
Author

Thank you pierre de calan.

its_anandrjs

New Update lets see with an example

Eg:- Suppose you have one table i give inline example like ways you can use for  any table

Tablename:

load * inline

[

Products

A

B

C

];

Store Tablename into Tablename.qvd;

Drop table Tablename;

Eg2:-

Let vPath = 'D:\';

Let vTablename = 'Products';

$(vTablename):

LOAD Products,

     Sales

FROM

(ooxml, embedded labels, table is Sheet1);

Store $(vTablename) into $(vPath)$(vTablename).qvd;

attached is a qvd file

MK_QSL
MVP
MVP

Check enclosed file....

Not applicable
Author

sorry  sir I did mistake in your name.thank you james

Not applicable
Author

thank you calan

its_anandrjs

Thanks table name is case sensitive and while making qvd you have to use exactly same name to the table name

and from and table box you can store object as QVD while exporting as QVD.

See my attached example

Thanks & Regards

Not applicable
Author

Hi, a simple example.

Regards.

Not applicable
Author

your file is not opened in my qlikview personal edition please send to file in another way .Ernesto

Not applicable
Author

Hi, This is my Example:

Tabla1:  // This is the source o table load in qlikview.

LOAD * Inline

[Campo, valor

1,10

2,50

3,30

];

STORE  Tabla1 into Tabla1.qvd;  // Here, you use Store statement for save data into QVD File

Regards,