Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.