Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
hi guys
I want to generate qvd files in qlikview .I do not know how to generate qvd files in qlikview please tell me out.
Regards:
madhu
 its_anandrjs
		
			its_anandrjs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You have to write
STORE tablename into tablename.qvd;
thats it
Eg:-
Tablename:
load * inline
[
Products
A
B
C
];
Store Tablename into Tablename.qvd;
Or
Store Tablename into D:\QVDLocation\Tablename.qvd;
Or
By any variable also
Let vPath = 'D:\QVDLocation\';
then use for qvd creation
Store Tablename into $(vPath)Tablename.qvd;
Drop table Tablename;
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		TableName:
Load
FieldName1,
FieldName2,
......
......
From FileName;
Store TableName into 'C:\Data\TableName.qvd' (QVD);
 
					
				
		
Ex:
Table:
Load *
From YourSourceFile;
Stoe Table into Yourwish.qvd;
 
					
				
		
Hi,
In script:
STORE Table into QVDFile.qvd;
You can also export data from an object in qvd format (right click, export etc)
Hope this helps
 
					
				
		
ok anand send to me one example of qvd.how to write that ple tell me
 
					
				
		
thank you anand
 
					
				
		
 ThornOfCrowns
		
			ThornOfCrowns
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I didn't know that Pierre de Calan, thanks!
 
					
				
		
thank you manish
 
					
				
		
Thank you Ravi.
