Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I'm trying to generate a QVD with FileCreation Date. I'm using the below script and variable:
Let vFileCreationMonth= Date(Today(),'MMYYYY');
[Data Info]:
Load * Inline [
Products,Sales
Routers.100
Switches.2399
];
Store [Data Info] into [lib://FolderPath/Qlikview\QVD\DataInfo_$(vFileCreationMonth).qvd](qvd);
Using the above script the QVD is not being generated, the reload is successful not sure what the issue is.
Thanks
The code works for me at my place.
Have you checked the correct location for the file?
The code works for me at my place.
Have you checked the correct location for the file?
that code works on my machine too.
HI
As suggested the code looks fine.
Check the location and make sure you have the rights need.
Make sure you variable is being populated also.
Trace $(vFileCreationMonth);
Mark
Hi Rahul,
try this:
let vFileDate = Date(today(); 'DD-MM-YY');
temp:
load Your data;
Store [your Table] into [your Table] $FileDate).qvd(qvd);
i hope that helps
Beck
Thanks for the reply, had some access issues. The code seems to work fine.