Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Check the attached
LET vDate1 = 3;
SET vDate2 = 5;
SET vDate3 = '=vDate1 + vDate2';
Check the attached
LET vDate1 = 3;
SET vDate2 = 5;
SET vDate3 = '=vDate1 + vDate2';
Many thanks Sunny!