Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
My expression does not work correctly, when I select Statu as 'Açık' and date older than 30 days from ISTEK_ACISTARIHI2
One of them is not affected
=Count(if(ISTEK_ACISTARIHI2>=30 ,ISTEK_ACISTARIHI2) and ISTEK_DURUM='Açık')
 MayilVahanan
		
			MayilVahanan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		HI
Try like this
=Count(if(ISTEK_ACISTARIHI2>=30 and ISTEK_DURUM='Açık' ,ISTEK_ACISTARIHI2))
Hope it helps
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It didnt work correctly
 
					
				
		
 jagan
		
			jagan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try like this
Count({<ISTEK_ACISTARIHI2={'>=30'}, ISTEK_DURUM={'Açık'}>} ISTEK_ACISTARIHI2)
Regards,
Jagan.
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It didnt also work
 
					
				
		
 jagan
		
			jagan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Can you attach sample file?
Regards,
Jagan.
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi jagan,
I have attached file
The issue in TURUNCU HAT - İstekler tab
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You can test in the chart graph
 
					
				
		
 jagan
		
			jagan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		
Hi,
Can you explain clearly what you want to do in this chart?
Regards,
Jagan.
 QSense
		
			QSense
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
| =date(WeekStart(ISTEK_ACISTARIHI2),'DD.MM.YYYY') | ISTEK_DURUM | ||
| 19.11.2012 | Açık | Dimension | =date(WeekStart(ISTEK_ACISTARIHI2),'DD.MM.YYYY') | 
| 12.11.2012 | Açık | ||
| 05.11.2012 | Kapalı | ||
| 29.10.2012 | Açık | ||
| 22.10.2012 | Kapalı | ||
| 15.10.2012 | Açık | ||
| 08.10.2012 | Açık | ||
| 01.10.2012 | Açık | 
I can explain in sample.
In list above I want to display in chart and my dimension as you see.
but my need is that When I looked in 05.11.2012 date I want to display 30 days and older before 05.11.2012 date and ISTEK_DURUM="Açık"
For each date I would like to see this information
For instance from the wiew of 19.11.2012 how many request satisfy my need
these three rows satsify my need
| 15.10.2012 | Açık | 
| 08.10.2012 | Açık | 
| 01.10.2012 | Açık | 
How can I write an expression to satisfy my need from the each date view?
As you see above, Count(if(ISTEK_ACISTARIHI2 >=30,ISTEK_ACISTARIHI2, ISTEK_DURUM='Açık')) wtih this expression , ıt brings total amount 8 but ıt should bring zero since ISTEK_ACISTARIHI2 is not older than 30 days
if ISTEK_ACISTARIHI2 older than 30 days and ISTEK_DURUM ='Açık' , ıt must count total rows both satisfies two conditions
