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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

include statement with a variable

Hi,

is there a way to inser a variable path into an include statement ?

I'm trying this:

let my_include = '$include=' & peek('my_path');

$(my_include);

but simply it doesn't work, without any further.

Is it possible to do it ? Help please

Thanks in advance

1 Solution

Accepted Solutions
flipside
Partner - Specialist II
Partner - Specialist II

Hi,

Try it this way ...

let my_include= 'LoadScript.txt';

$(include=$(my_include));

flipside

View solution in original post

2 Replies
flipside
Partner - Specialist II
Partner - Specialist II

Hi,

Try it this way ...

let my_include= 'LoadScript.txt';

$(include=$(my_include));

flipside

Anonymous
Not applicable
Author

THANKS VERY MUCH !!!