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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Creation of tablebox object in qlikview through macro

Hi,

We need to create an object and set its columns dynamically through code. Could anybody please suggest any way?

1 Reply
Not applicable
Author

Take a look at the APIGuide.qvw. You should be able to see all the options for manipulating a TableBox with code.

Here's a simple example of creating a Table Box from the API Guide:

set TB = ActiveDocument.Sheets("Products").CreateTableBox
TB.AddField "ProductType"
TB.AddField "Product"