Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 dberkesacn
		
			dberkesacn
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Guys,
pls help me in this simple set analysis, =sum({<Date={">2017.02.01"}>}Value), why this is not working?
Would like to filter the date - global date format in the begging of the script is SET DateFormat='YYYY.MM.DD';.
Thanks,
D
 
					
				
		
 oscar_ortiz
		
			oscar_ortiz
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Check this out. I've modified the script slightly to ensure that your date is using the proper format. Preceding load on your original inline load statement.
LOAD
*,
Date(Date#(Date,'YYYY.MM.DD')) as CheckDate
;
Good luck
Oscar
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Please check date format
=sum({<Date={">01.03.2017"}>}Sales_Total )
This is working in my app.
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		What is the format of your Date field?
 
					
				
		
try to use date format of your "Date" data field in set comparision.
 Frank_Hartmann
		
			Frank_Hartmann
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		what format has your "Date" field?
maybe:
sum({<Date={'>2017.02.01'}>}Value)
hope this helps
 
					
				
		
 dberkesacn
		
			dberkesacn
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		it come from the initial global variable SET DateFormat='YYYY.MM.DD'; and the source data has also this structure.
 prma7799
		
			prma7799
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Could you please share some sample app
.png) 
					
				
		
 sasikanth
		
			sasikanth
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		HI
Try this
=SUM({<Date={"> $(=num(Dat#( '2017.02.01','YYYY.02.01'))) "}>}Value)
 
					
				
		
 dberkesacn
		
			dberkesacn
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Yes.
 Frank_Hartmann
		
			Frank_Hartmann
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		see attached file
hope this helps
