Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ed_hoecker
Creator III
Creator III

Update inputbox value

Daear all,
I have an Inputbox where I can enter a value for a variable vVar. Evertaytime when I change the value manually also the vVar will be changed. That's ok.
At the end of the day I want to set automatically (checkbox)a default to the Inputbox.

Examples:
In the morning Inputbox = 50 and vVar = 50. Than the value will be changed. In the evening I want to click a checkbox and the Inputbox value becomes 50.

Possible?

3 Replies
QFabian
Specialist III
Specialist III

Hi, you can do that in your load script, setting the variable each time you make a reload.

Set vVar = 50;

QFabian
QFabian
Specialist III
Specialist III

Another option is create a button object  with a external action

QFabian_1-1604590443665.png

 

QFabian_0-1604590404743.png

 

QFabian
ed_hoecker
Creator III
Creator III
Author

Dear Fabian,
reload not possible because the analysis will not be reloaded every day and users have no permission to to it.

Button Object with external action set vVar = 50 doesn't work. I've tried it. I beleve that the contend of the variable will controled by the contend of the inputbox and if i try to change the var by button it doesn't change the contend of the var.