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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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 ?

Labels (1)
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.