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

Input Value

Dear all,

I have a multibox called "Channel" and one "Input Box" . My query is that user will select value from the multibox and that value will be inputed into a "input box".. Based on input box value when user reload  the script data will be display into a table box.. Need your help..

For your better understanding please see attachment..

Channel.JPG.jpg

Regards,

Masba

Labels (1)
1 Solution

Accepted Solutions
alkesh_sharma
Creator III
Creator III

Declare a variable

vUserInput = GetfiledSelection(CHANNEL_DESC)

While creating the input box, select the the variable vUserINput.

Scripting.

LOAD *

FROM XXX

Where CHANNEL_DESC = $(vUserInput)

View solution in original post

2 Replies
tresB
Champion III
Champion III

masba khandaker wrote:

....Based on input box value when user reload  the script data will be display into a table box..

If user selects channel cod 02, and runs reload - do you expect only 02 channel's data to be loaded?

alkesh_sharma
Creator III
Creator III

Declare a variable

vUserInput = GetfiledSelection(CHANNEL_DESC)

While creating the input box, select the the variable vUserINput.

Scripting.

LOAD *

FROM XXX

Where CHANNEL_DESC = $(vUserInput)