Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
hi All ,
I wanted to know how to convert the formate from , Apr 1,2014 TO 04-10-2014.
Thanks in Advance
 its_anandrjs
		
			its_anandrjs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try this way in any text object
=Date(Date#('Apr 1,2014', 'MMM D,YYYY'), 'MM-DD-YYYY')
Load
Date(Date#(DateField, 'MMM D,YYYY'), 'MM-DD-YYYY') as DateFieldNew
From Location;
Regards
Anand
 
					
				
		
 qlikconsultant
		
			qlikconsultant
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		date(yourdateatribute, 'DD-MM-YYYY' )
 
					
				
		
 jagan
		
			jagan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try like this
Date(Date#(FieldName, 'MMM D,YYYY'), 'MM-DD-YYYY')
Hope this helps you.
Regards,
Jagan.
 
					
				
		
Hi
give
Date(Date#('Apr-10-2014','MMM-DD-YYYY'),'MM-DD-YYYY')
a try
hope that helps
Joe
 
					
				
		
Date(Date#('Apr-10-2014','MMM-DD-YYYY'),'MM-DD-YYYY')
It work fine, if MonthNames variable contain 'Apr'.
 its_anandrjs
		
			its_anandrjs
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try this way in any text object
=Date(Date#('Apr 1,2014', 'MMM D,YYYY'), 'MM-DD-YYYY')
Load
Date(Date#(DateField, 'MMM D,YYYY'), 'MM-DD-YYYY') as DateFieldNew
From Location;
Regards
Anand
 
					
				
		
Hi Wrestler,
=Date(ShipDate,'DD-MM-YYYY')
Regards
Neetha
 
					
				
		
 agomes1971
		
			agomes1971
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
=Date(Date#(DataTeste,'MMM-DD-YYYY'),'MM-DD-YYYY')
Regards
André Gomes
 
					
				
		
 maleksafa
		
			maleksafa
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		date(date#('Apr 1,2014','MMM D,YYYY'),'DD-MM-YYYY')
 
					
				
		
Thanks anand
u helped me out
