Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 🙂
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?
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?
Perfect, the "let" was the answer, slowly learning the Qlik Sense magic 🙂 Thanks a lot!