Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
My firm usually receive qvd from a data firm to design our dashboard but that's no more
There is a qvw file I have and I need to convert it to qvd?
How do I do it? especially on a qliksense application
I placed a sample file for easy illustrATION.
Regards
Hi,
maybe rwunderlich have solve Your problem?
Thanks Johannson for your response but that's not I want to achieve.
Regards
How do one use the binary function on Qliksense?
The QlikSense Help descibes Binary Load and gives examples, https://help.qlik.com/en-US/sense/3.1/Subsystems/Hub/Content/Scripting/ScriptRegularStatements/Binar...
Note: The Binary command needs to be the first line of the load script.
Thank you Bill.. The link was helpful but I still can't extract the date in the existing qvw into a qvd
I still open to suggestions. Thank you all
Maybe you could write a new qvf /qvw that:
I have had a quick look at your qvw and it only has one table so should be quick to script.
Exactly my friend but I don't know how to write the script..
This script line Binary loads your qvw and has to be the first line in your script. You will need to create a suitable //lib Data Connection :
Binary [lib://Binary/SOLMAN_CHARM_ITQA.qvw] ;
This stores the resident table into a qvd :
Store [TEMP1-1] into [lib://Binary/TEMP1-1.qvd] (qvd) ;
here's a Guide how-to
Qlik Sense Desktop - Loading Data from QlikView Applications (video)
After Binary load use below piece of code to convert all tables in data model into QVD.
For i=0 to NoOfTables()-1
LET vTableName = TableName(i);
STORE $(vTableName) Into [\\qvdpath\$(vTableName).qvd] (qvd);
DROP Table $(vTableName);
LET vTableName = ;
NEXT i
SET i = ;