Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a folder (C:\Qlikview\) that contains multiple qvd's, within this folder I want to select only the QVD's that begin with the name Sales****.qvd and then put this into one QVD file called Master_Sales.qvd
Is this possible?
Thanks
Try this, if they have the same field names
Table_Master_Sales:
Load ...
...
...
From
STORE Table_Master_Sales into C:\\Qlikview\Master_Sales.qvd
I hope it helps
A QVD will store only one table.
If all Sales***.qvd files show similar fields, e.g. just data for different months, you can create a QVD to LOAD all QVDs, concatenating them to a single table and STORE this single table to your master qvd.
Try this, if they have the same field names
Table_Master_Sales:
Load ...
...
...
From
STORE Table_Master_Sales into C:\\Qlikview\Master_Sales.qvd
I hope it helps