Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
skr002244
Contributor III
Contributor III

How to import a QVD file into R ?

I want to import a QVD file into the R Console.I'm new to both the softwares.Can anyone help me out ?

1 Solution

Accepted Solutions
Gysbert_Wassenaar

R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:

T1:

LOAD * FROM MyQvdFile.qvd (qvd);

STORE Table T1 into MyCSVFile.csv (txt);

The result is a csv file with the name MyCSVFile.csv


talk is cheap, supply exceeds demand

View solution in original post

5 Replies
Gysbert_Wassenaar

R cannot read qvd files. You will need some kind of utility that can read qvd files (like qlikview) and export the data to a format that R can read, for example csv. You can use Qlikview to do this:

T1:

LOAD * FROM MyQvdFile.qvd (qvd);

STORE Table T1 into MyCSVFile.csv (txt);

The result is a csv file with the name MyCSVFile.csv


talk is cheap, supply exceeds demand
skr002244
Contributor III
Contributor III
Author

Thanks

Not applicable

I have a problem on T1; it dosn't work

Not applicable

Table is not on script. It is ok:

STORE T1 into MyCSVFile.csv (txt);

tjardine
Contributor
Contributor

I have not tried this yet. https://github.com/JoseEchave/qlikviewr