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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

variables

I have used a calculated variable as below and i have stored this along with rest of the data load into a qvd

 

SET vtest2 = Sum(AGGR(IF(Date(Monthstart,'DD/MM/YYYY') <= Date(Today(),'DD/MM/YYYY'),[sales]),[region]));

 

Now i would like to refer this variable again in another load script.. to use the result of above variable.

 

is this possible?

 

 

Labels (1)
10 Replies
raadwiptec
Creator II
Creator II
Author

For ex: is i try like this it gives me token errors

 

LOAD
 Reference",
salestype
"Monthstart",
$(vtest2)
FROM [lib://User Mappings/Qvd/final.qvd](qvd)