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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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

1 Reply
tresesco
MVP
MVP

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.