Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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?