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

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

Add Data Parameter in Qlik Sense

Dear all,

I'm new in Qlik Sense. How can i add parameter in Qlik sense? I have two add date parameters( From Date and To Date), bases on data parameter value data will be reload. Please help me to solve this issue

Regards,

Masba

1 Reply
shivanandk
Partner - Creator II
Partner - Creator II

You can create 2 variables in the scripts and then use it in your load statemen.

For example:

Let vDate1 = '01/01/2014' ;

Let vDate2 = '12/31/2015' ;

Load .....

Also you can save the above 2 lines in external script file, and then include them in your script.

For example:

$(Include=abc.txt);

Load..