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 create qvd file

hi

Can anyone tell me how to create a qvd file and load it into my QV file. I am using QV10.

If possible give me some example how to write qvd file and store into QV file. I am new to QV knowledge.

Thks

15 Replies
Not applicable
Author

lookup help of qv, search store

Not applicable
Author

store tablename into qvdfilename.qvd;


load * from qvdfilename.qvd(qvd);

Not applicable
Author

Hi

Exmpl

A:

Load

X,y,Z

From abc;

Store A into Path\ABC.qvd;

Regards--

Nayan

Not applicable
Author

hi for creating qvd file wheather i need to write in a textfile and save it as test.qvd or else i need to write in the editscript tab .

Not applicable
Author

Hi

You have to create .qvw file for makking QVD say "MakingTest.qvw" (New File)

Now, write Script like Load * and so on and make QVD using 'store' keyward

and it will create your qvd. Refer code given in previous post

Regards--

Nayan

Not applicable
Author

Thanks for your replies

I got it now how to work on QVD files

Not applicable
Author

Hi,

Please verify

Regards--

Nayan

brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi,

the store-function works only in the script. For storing data from a chart into a qvd-file you have to use a macro like this, vTempFolder, vQVDName are variables, CH02 is the ID of a chart:

'QVD-Export
sub ExpQVD

set v = ActiveDocument.Variables("vTempFolder")
set v1 = v.GetContent

tempFolder = v1.String

set v = ActiveDocument.Variables("vQVDName")
set v1 = v.GetContent

QVDName = v1.String

QVDFile = tempFolder & "\" & QVDName & ".qvd"

set obj = ActiveDocument.GetSheetObject("CH02")
obj.ExportEx QVDFile, 4
End Sub

Not applicable
Author

can u please explain it clearly.can u please exlain it with any example?