Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
Export from objects to files is possible with QVD by using export orders and existing automation.
thanks.
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.
Can you find me a document to better understand the functions and procedures related to objects Qlikview?
Thanks
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
Thanks you all