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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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!