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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to Store the qvd data into xml formate?

hi,

How to Store the QVD's data into XML formate or XML Files?

1 Reply
Not applicable
Author

Hi ,

You can export Qvd data to XML file by using ExportXml

The Following Code is from API Guide to send tableBox to XML File

set tb = ActiveDocument.Sheets("Main").CreateTableBox
tb.AddField "Class"
tb.AddField "Member"
tb.ExportXml "C:\test.xml",1200

Hope this will help you

Thank You

Rahul