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

qvd creation

Hi

how many ways to create qvd in qv?

  thanks in advance

9 Replies
prma7799
Master III
Master III

Using STORE command.

Store ABC into  C:\Users\Desktop\QlikView\ABC.qvd;

and Please check below.

http://community.qlik.com/message/536603#536603

ashfaq_haseeb
Champion III
Champion III

HI,

Try Below.

Temp:

Load * inline

[

A

1

2

3

4

];

Store Temp into Temp.qvd(qvd);

Regards

ASHFAQ

Not applicable

Hi

By,

store tblname into name.qvd;

also you can export table data into qvd go through below link

http://community.qlik.com/message/536603#536603

Also you use macro for the same approach like,

sub SaveTableToFile

set obj = ActiveDocument.GetSheetObject("CH01")

obj.ExportEx "e:\CH1inputs.qvd", 4

end sub

prabhas277
Creator
Creator
Author

Hi

I want to know another type  of qvd creation?

prma7799
Master III
Master III

Hi Prabhas,

Check below link

http://community.qlik.com/message/536603#536603

Thanks

PM

prabhas277
Creator
Creator
Author

hi

I want to know another way to create the qvd?

prabhas277
Creator
Creator
Author

Hi

I want to know another way to create the qvd?

Not applicable

Please share your approach why you need to do rather than store ...

Also you use macro for the same approach like,

sub SaveTableToFile

set obj = ActiveDocument.GetSheetObject("CH01")

obj.ExportEx "e:\CH1inputs.qvd", 4

end sub

mightyqlikers
Creator III
Creator III

Hi

vPath='destination path here';

sub storeDelete(vpath,vTableName)

  store vTableName into $(vPath)$(vTableName).qvd;

drop table vTableName;

end sub

Table1:

load

     *

      from source;

call storeDelete(vPath,Table1);

Regards

Samwise