Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
anuradhaa
Partner - Creator II
Partner - Creator II

Create QVD file using CSV file

Hi,

Please help me to create QVD file using CSV file.

Thanks,

Anuradha

1 Solution

Accepted Solutions
MayilVahanan

Hi,

    

Testing:
LOAD TaxID,
     Company
FROM
[clients.csv]
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

Store Testing into Test.qvd;

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

4 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

hi,

I hope the attach application helps you out.

Deepak

MayilVahanan

Hi,

    

Testing:
LOAD TaxID,
     Company
FROM
[clients.csv]
(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

Store Testing into Test.qvd;

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
ngulliver
Partner - Specialist III
Partner - Specialist III

Hi,

If you don't feel confident about coding the load then use the File Wizard.

     - In the Edit Script, click on the Table Files button at the bottom. This will let you choose your .csv file.

     All you need to do is make sure the delimiter is correct according to the content of your csv and select embedded labels on the next page if you have titles in you csv.

Lastly, as Mayil mentions, make sure you have a 'Load Name': above the generated load script and Store 'Load Name' into 'Filename'.qvd after the load script.

anuradhaa
Partner - Creator II
Partner - Creator II
Author

Thanks All