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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

CREATING QVD Files

Hi community,

Export from objects to files is possible with QVD by using export orders and existing automation.

thanks.


Labels (1)
4 Replies
pover
Partner - Master
Partner - Master

Hi Yimen,

I just want to confirm. Is this a question? If so the answer is yes. In the right-click -> export window you can select the file type QVD and in a macro you can use the following function:

set obj = ActiveDocument.GetSheetObject("CH01")
obj.ExportEx "C:\test.qvd", 4

Regards.

Not applicable
Author

Can you find me a document to better understand the functions and procedures related to objects Qlikview?

Thanks

Miguel_Angel_Baeyens
Support
Support

Hello Yimen,

If you do a full install of QlikView, go to the Documentation folder in your Program Files folder and there you will find a QVW file called "APIguide.qvw". There you are the reference with code examples for the QlikView API, for example:

tb.ExportEx "C:\test.xml" , ";" , 3 '0=HTML, 1=Text, 2=Bitmap, 3=XML, 4=QVD, 5=BIFF


Hope that helps



Not applicable
Author

Thanks you all