Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 sujit_nath
		
			sujit_nath
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I have a table with date values in a feild, but with different formats.. ex: ddmmyyyy,ddmmyy,mmddyyyy,yyyyddmm etc.
How do I load then in a different table in a same format. (dd/mm/yyyy)
my data would be like:
Table:
Load * inline [
Date
11122017
01112016
090816
11022016
20172105
20162204
];
In the other table, I need the dates as: 11/12/2017 etc..
 Chanty4u
		
			Chanty4u
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try with alt function
alt( date#( dat , 'YYYY/MM/DD' ),
date#( dat , 'MM/DD/YYYY' ),
date#( dat , 'MM/DD/YY' ),
'No valid date' )
 Chanty4u
		
			Chanty4u
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try with alt function
alt( date#( dat , 'YYYY/MM/DD' ),
date#( dat , 'MM/DD/YYYY' ),
date#( dat , 'MM/DD/YY' ),
'No valid date' )
 
					
				
		
 olivierrobin
		
			olivierrobin
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		hello
whatever solution you take, you will have another problem :
let's take 11122017 : how do you know it should be interepreted as a DDMMYYYY oy MMDDYYYY date ?
 sujit_nath
		
			sujit_nath
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		That's an issue.. but ya.. alt function should help me 
