Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

convert Qvd file to excel

Hai,

Can anyone explain me ,how to convert Qvd file into excel file.(.csv format).

Thanks in advance.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

4 Replies
MK_QSL
MVP
MVP

QVDFILE:
Load * from YourQVDFile;

Store QVDFile into CSVFile.csv(txt);

Read below articles..

https://www.quickintelligence.co.uk/write-csv-qlikview-store/

Saving into a CSV file froma script | Qlik Community

Chanty4u
MVP
MVP

Hi,

Load the Qvd into   Qlikview  and write the stro command as below

STORE TableName into ;

csv or excl or txt.

vardhancse
Specialist III
Specialist III

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);

Anonymous
Not applicable
Author

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