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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set table name as variable

I am loading lots of tables into QV and Im naming them with

tablename:

LOAD .....

etc..

I would like to take the table names that I defined and put them all into a variable eg tablename, Is this possible?

2 Replies
Not applicable
Author

Add a inline statement before or after loading a table

Ex: Table_List:

Load * Inline [

Table_Name

Table1

];

So that at the end of the execution you can have all the table names in a single table.

Using concat option you can set the table names into a variable. (Ex: concat( Table_Name, ';' ) )

Not applicable
Author

Thanks for this is it possible to have the script TAB names as a value?