Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
I am currently loading one of my data tables into Qlikview using the following script -
SDUE:
 LOAD * FROM
 
 (
I would like make a change to one of the fields as it is loaded in -
Year,'20'&right(Year,2) as AcademicYearShort,
How do I incorporate this in the LOAD script?
Thanks
Greg
 stabben23
		
			stabben23
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Not very Clear, but I'll try. Just do as below
LOAD *,  '20'&right(Year,2) as AcademicYearShort FROM
 
 (
 stabben23
		
			stabben23
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Not very Clear, but I'll try. Just do as below
LOAD *,  '20'&right(Year,2) as AcademicYearShort FROM
 
 (
 trdandamudi
		
			trdandamudi
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be like below:
SDUE:
Load *,
'20'&right(Year,2) as AcademicYearShort;
LOAD * FROM
(
