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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to Export Sheet object into QVD?

Hai,

I want to export a sheet object automatically into a QVD while reload Schedule happens in Server. How it's possible.

We have option to export the sheet object to QVD using Buttons but are there is any possibility to export by script level without using buttons.

Regards,

Vijay

2 Replies
Not applicable
Author

Hi Vijay,

a way could be to write a short macro like

SUB ExportQvd
set tb = ActiveDocument.GetSheetObject("CH01")
tb.ServerSideExportEx "C:\test.xml" , ";" , 3 '0=HTML, 1=Text, 2=Bitmap, 3=XML, 4=QVD, 5=BIFF
END SUB

(Example from the API Guide)

and activate it at script run time.

Good luck!

Rainer

Not applicable
Author

call that object ID into the script level and try to store into QVD