Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Storing selection into qvd

I have some values selected in a List Box. Now I need to export those selected values to a QVD  to a particular location with the help of a Button.

Could it be done somehow using Macro or something else?

2 Replies
m_woolf
Master II
Master II

You should be able to create a table box for that field and export the table box to QVD with an action.

Anonymous
Not applicable
Author

Hello!

I tried to do this.  Here is my macro:
Sub Procedure
QVDFile='C\\table.qvd'
set obj = ActiveDocument.GetSheetObject("TB03" )

obj.Export QVDFile, 4
END Sub

In TB03 I have two "Name", "ID" fields. When I save the table in QVD, then in QVD, I see one column "1 @", and under it "ID", "Name". How can I save the fields correctly?