Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
ZuzJsk007
Contributor III
Contributor III

Prefill Variable Input - slider

Hi, please, is it possible to prefill Variable input object, type Slider to a specific value given calculation in load script? Prefill by such value but that being able to change it manually. Thank you 🙂

Labels (3)
1 Solution

Accepted Solutions
dplr-rn
Partner - Master III
Partner - Master III

Not clear on the full challenge. but did you set the value of the variable in script?

soemthing like below. where i want the variable to sum of the Rate column

Load sum(Rate) as TotalRate
resident DummyTable ;
let vVarCheck = peek('TotalRate',0);

 

you could try setting the variable as an expression in main UI  as well?

View solution in original post

2 Replies
dplr-rn
Partner - Master III
Partner - Master III

Not clear on the full challenge. but did you set the value of the variable in script?

soemthing like below. where i want the variable to sum of the Rate column

Load sum(Rate) as TotalRate
resident DummyTable ;
let vVarCheck = peek('TotalRate',0);

 

you could try setting the variable as an expression in main UI  as well?

ZuzJsk007
Contributor III
Contributor III
Author

Perfect, the "let" was the answer, slowly learning the Qlik Sense magic 🙂 Thanks a lot!