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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Variables in script + user input box

Hi

Want to create 3 variables in script

vDate1 = 3

vDate2 = 5

vDate3 = $(vDate1) + $(vDate2)

In user interface, allow user to adjust vDate1 via input box, and adjusted value updates vDate3 in the data model

Attached is an example

Is this possible?

Please advise,

Rich

1 Solution

Accepted Solutions
sunny_talwar

Check the attached

LET vDate1 = 3;

SET vDate2 = 5;

SET vDate3 = '=vDate1 + vDate2';

View solution in original post

2 Replies
sunny_talwar

Check the attached

LET vDate1 = 3;

SET vDate2 = 5;

SET vDate3 = '=vDate1 + vDate2';

Not applicable
Author

Many thanks Sunny!