Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Declare variable works after binary load but not in original scipt

Can anyone tell me why the segment of script below works after I do a binary load of a report but not when I add it to the end of the script for that report andh ow to fix it? I'm just trying to get the max of dates in the data we load.

Temp:

LOAD max(Date) as tmpMaxDate

Resident table1;

LET vMaxVesselDate = floor(peek('tmpMaxDate'));

Drop Table Temp;

4 Replies
Not applicable
Author

Variables dont get copied over to the new qvw when you do a binary load.

The variables need to be recreated in the final file.

Edit: A binary load copies only the data and the data-model. Nothing else gets copied over.

Not applicable
Author

That's not the problem I am having. The problem is that I CAN create the variable after loading my live report with a binary load and that script, but I CANNOT create the variable when I copy that segment of script to the end of the live report and reload it.

Edit: Actually I think I added the segment as a new tab in the script, rather than at the end of the current tab, if that makes a difference.

Not applicable
Author

Sorry I am not able to fully understand the issue at hand. Please bear with me here. Lets say you have qvw1 and qvw2.

qvw1 > binary load > qvw2.  So qvw2 is a result of the binary load. Now you are tying to create a variable in which qvw?

Also creating in a different tab shouldn't make any difference.

BTW, are you getting any error message or the variable doesn't exist or has blank value after reload of qvw2 ? Which one of these are you facing.

Thanks

jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hi,

Can you pleas post the error that the script is displaying?

regards