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
 
					
				
		
Thank you pierre de calan.
 its_anandrjs
		
			its_anandrjs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		New Update lets see with an example
Eg:- Suppose you have one table i give inline example like ways you can use for any table
Tablename:
load * inline
[
Products
A
B
C
];
Store Tablename into Tablename.qvd;
Drop table Tablename;
Eg2:-
Let vPath = 'D:\';
Let vTablename = 'Products';
$(vTablename):
LOAD Products,
Sales
FROM
(ooxml, embedded labels, table is Sheet1);
Store $(vTablename) into $(vPath)$(vTablename).qvd;
attached is a qvd file
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Check enclosed file....
 
					
				
		
sorry sir I did mistake in your name.thank you james
 
					
				
		
thank you calan
 its_anandrjs
		
			its_anandrjs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks table name is case sensitive and while making qvd you have to use exactly same name to the table name
and from and table box you can store object as QVD while exporting as QVD.
See my attached example
Thanks & Regards
 
					
				
		
Hi, a simple example.
Regards.
 
					
				
		
your file is not opened in my qlikview personal edition please send to file in another way .Ernesto
 
					
				
		
Hi, This is my Example:
Tabla1: // This is the source o table load in qlikview.
LOAD * Inline
[Campo, valor
1,10
2,50
3,30
];
STORE Tabla1 into Tabla1.qvd; // Here, you use Store statement for save data into QVD File
Regards,
