Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Is it possible to get data from one qvw(not qvd) to other qvw file or combine two qvw files...???
if so, how to do that....
any script for that?????????
pls guide me
Hi,
you can load the data, but NOT layouts etc, by using a BINARY LOAD, you cannot load from a qvw with section access and can only process one binary load in a QVW
HTH Andy
You can binary load all the data from one document into another
binary [someotherdoc.qvw];
This has to be the very first statement of your script before anything else
Combining is not possible directly but you can output every table in a qvw by binary loading it and then having a store for each table in the document
store tablea into tablea.qvd(qvd);
Hi,
You can load 1st qvw file as Binary load and the 2nd load can be as normal.
Is it possible to get data from one qvw(not qvd) to other qvw file or combine two qvw files...??? yes,it's possible.
if so, how to do that....
any script for that????????? --
1.try to create fresh qvw document,
2. edit script---Data tab--select QlikView file (from here u can select ur qvw or qvd)
3. repeat 2nd step to selct another either qvw or qvd
4. save and load
Hi,
use Binary Load as shown in the below scripting;
Here I have loaded Maps.qvw through Binary load and other table as normal
Regards
thanks for the reply.
is it possible to load a particular table frome one qvw to other??
yes,u can do.
Binary load as suggested by everyone and drop the tables you don't need. This way you can keep what you need. You can use functions like NoofTables(), TableName() and TableNumber() to automate this process.
Cheers,
DV
www.QlikShare.com