Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
I want to do summation something like sum(Actual) but with condition "company >= 12001 and company <= 12099"
How to write this in expression, such thing possible in QlikView
 
					
				
		
Either use Sum(if(company >= 12001 and company<=12099, Actual))
or, Sum({$<company={'>=12001<=12901'}>} Actual)
 
					
				
		
Sum({<company = {">= 12001 <= 12009"}>} Actual)
 
					
				
		
Either use Sum(if(company >= 12001 and company<=12099, Actual))
or, Sum({$<company={'>=12001<=12901'}>} Actual)
 
					
				
		
Thanks Johan
