Hai,
Can anyone explain me ,how to convert Qvd file into excel file.(.csv format).
Thanks in advance.
QVDFILE:
Load * from YourQVDFile;
Store QVDFile into CSVFile.csv(txt);
Read below articles..
https://www.quickintelligence.co.uk/write-csv-qlikview-store/
QVDFILE:
Load * from YourQVDFile;
Store QVDFile into CSVFile.csv(txt);
Read below articles..
https://www.quickintelligence.co.uk/write-csv-qlikview-store/
Hi,
Load the Qvd into Qlikview and write the stro command as below
STORE TableName into
csv or excl or txt.
Hi Using store we can :
Store mytable into xyz.qvd (qvd);
Store * from mytable into xyz.qvd;
Store Name, RegNo from mytable into xyz.qvd;
Store Name as a, RegNo as b from mytable into xyz.qvd;
store mytable into myfile.txt (txt);
store * from mytable into myfile.txt (txt);
Hi Sindhu,
You can do same as like QVD creation.
Store Table Name into C:\....\.....\Desktop\sales.csv ;//path location where you want to save otherwise if you give only filename it will save at QVW location.
--> For text file
Store qvd into demo.txt(txt);
Regards
Pavan