Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 TheRoo
		
			TheRoo
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I’m trying to exclude (NotNull) from a Date field, although I can do it by:
= If (isnull(YourExpression),0,YourExpression), unfortunately it is converting all the other dates into just numbers, so in a nutshell how do a write the script to covert the number into ‘DD-MM-YY’
 Vegar
		
			Vegar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Format your output as a date
= If (isnull(YourExpression),0,date(YourExpression, 'DD-MM-YY') )
 
					
				
		
 tomovangel
		
			tomovangel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello, easiest way is to do this
Date(If (isnull(YourExpression),0,YourExpression),'DD.MM.YYYY')
 Vegar
		
			Vegar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Format your output as a date
= If (isnull(YourExpression),0,date(YourExpression, 'DD-MM-YY') )
 
					
				
		
 tomovangel
		
			tomovangel
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello, easiest way is to do this
Date(If (isnull(YourExpression),0,YourExpression),'DD.MM.YYYY')
 TheRoo
		
			TheRoo
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Tack, det fungerar nu
 TheRoo
		
			TheRoo
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thank you
