Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

get value from input box

Hi! I'm newbie starting with qilkview.

I have any question that I wanna get value from input box to a variable

, and then I  wanna save value from the variable to qvd file.

Please expain step by step.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi,

1. First create one Input box in the chart this will show a new variable button in the Input Box Properties.

2. Create a name of the Variable and give the values in input box this will assign a value to the variable created using input box.

3. Finally in scripting part create one inline table as below and store the table as qvd. This will solve your purpose.

But this needs to reload every time you changing the variable value

Let vN=$(vNum);

A:

LOAD * INLINE [

Num,A

$(vN),1

];

Store A into ABC.qvd;

Please find the sample application for your reference.

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hi,

1. First create one Input box in the chart this will show a new variable button in the Input Box Properties.

2. Create a name of the Variable and give the values in input box this will assign a value to the variable created using input box.

3. Finally in scripting part create one inline table as below and store the table as qvd. This will solve your purpose.

But this needs to reload every time you changing the variable value

Let vN=$(vNum);

A:

LOAD * INLINE [

Num,A

$(vN),1

];

Store A into ABC.qvd;

Please find the sample application for your reference.

Not applicable
Author

thank you for your help, I try to do that you told it's work.

thank you very much.