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: 
Not applicable

how to create include and must include statments ?

how to create include and must include statments ?

1 Solution

Accepted Solutions
maleksafa
Specialist
Specialist

$(Include=abc.txt);

$(Must_Include=def.txt);

The difference between include and must_include is that include will fail silently if the file is not found during script reload, while must_include will throw an error if the file is not found.

View solution in original post

2 Replies
maleksafa
Specialist
Specialist

$(Include=abc.txt);

$(Must_Include=def.txt);

The difference between include and must_include is that include will fail silently if the file is not found during script reload, while must_include will throw an error if the file is not found.

puttemans
Specialist
Specialist

To create :

Go to 'Insert' in the script editor, and then click 'Include Statement'. You'll then be asked to point to the location of the file you'd like to include, and the script will be made.