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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Scripting the creation of a QVO

What is the syntax to script the exporting (store) contents of an object to a QVO?

I want to use the QVO has a data table in QVW.

Thanks

Glen

4 Replies
Not applicable
Author

First you´ll store your table at qvw generate qvd.Use this syntax

STORE YOUR_TABLE INTO [YOUR_PATH \ YOUR_NAME.QVD];

and after that....just read from another application....



Not applicable
Author

Would the extension be QVO instead of QVD?

Not applicable
Author

the extension is QVD (QlikView Data)

pover
Partner - Master
Partner - Master

Are you taking about the script to export an chart object using a macro or in the load script when you are loading data and want to save a table?

For the marco, the function would be:

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

QVO is not an option. These are you file format options:

Export format
0 = HTML
1 = Text delimited
2 = bitmap image
3 = XML
4 = QVD
5 = BIFF (Excel)

You can also create an action that exports raw data and you can export that data into the qvo format.

Regards.