Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD files

Hi all,

I have a qlikview app which loads all the data from QVD files.

I need to add few columns and update the records and i dont have data stored in any other format(excel or csv).

How can i do that?

Basically how can i update/modify the QVD files???

Thanks

13 Replies
alexandros17
Partner - Champion III
Partner - Champion III

The only way you have is loading the qvd, modify, update it and store it again.

Hope it helps

Anonymous
Not applicable
Author

Deepak,

You can load your qvd files, modify the loaded data if you require, and then you can store it as a qvd file again in case you will need it for next loading.

Marc.

Not applicable
Author

i dont have any other source for data. just the QVD files.

can we modify the QVD file??? and how do we do that???

or else can we convert it into any other format(say csv or xlsx)

Not applicable
Author

how do i modify it??.. i need to add a column

alexandros17
Partner - Champion III
Partner - Champion III

Simply

MyQvd:

Load * from xxx.qvd;

At this point you can modify it as any other table.

You can save the resulting table as qvd again or as csv

Anonymous
Not applicable
Author

the info you have to add is in another qvd, external sorce or is it a fixed value or calculation from field you have....?

Not applicable
Author

its just another column which i have in excel sheet

martinpohl
Partner - Master
Partner - Master

try this:

for each file in filelist('qvd\*.qvd');

trace $(file);

Data:

load *

//here add your new fields

from '$(file)' (qvd);

store  Data into '$(file)' (qvd);

drop table Data;

next

If the new field contains data from another file join it or use applymap

Regards

Not applicable
Author

thanks for that but i m new to qlikview and i m not able to understand that..

could you please break it for me