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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Interval match Level setting through Input box

Hi guys,

            I need to change my interval match levels in the script by inputting through input box in the dashboard....???

Kindly anyone help me out to arrive the solution.

Regards,

Vignesh

Labels (1)
1 Reply
tresB
Champion III
Champion III

May be something like this?

Load

Input('Enter value', 'Input box') as Inputvalue

autogenerate 1;

Let  vInput=Peek('Inputvalue');

Load * FROM Table1;

Load * FROM Table2;

IntervalMatch ( Field1 ) Load StartField, EndField FROM Table1;  // Here replace StartField or EndField by variable vInput as per your requirement.