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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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

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
tresesco
MVP
MVP

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)