Sorry I tried to think of a good subject 
I have the query below and it works fine
It looks at any records that are open longer then 30 days for any givin month. If they are then I add them to a tally and we are all good.
The issue is that I need to tally the records EVERY month they are open over 30 days not just the first one.
So if record 1/1/2011 was open till 4/1/2011 I want to get a count, one for each month.
2/1/2011 = 1
3/1/2011 = 1
4/1/2011 = 1
Currently it will only count one time then it will stop.
Any ideas?

I have the query below and it works fine
Code:
SELECT Format(DateAdd("d",[AwareDate],30),"yyyy/mm") AS AwareDatePlus30, Sum(IIf(DateDiff("d",DateAdd("d",[AwareDate],30),[DateClosed])<=0,0,1)) AS [AwareDateOpen>30Count]
FROM qryCQA
GROUP BY Format(DateAdd("d",[AwareDate],30),"yyyy/mm");
It looks at any records that are open longer then 30 days for any givin month. If they are then I add them to a tally and we are all good.
The issue is that I need to tally the records EVERY month they are open over 30 days not just the first one.
So if record 1/1/2011 was open till 4/1/2011 I want to get a count, one for each month.
2/1/2011 = 1
3/1/2011 = 1
4/1/2011 = 1
Currently it will only count one time then it will stop.
Any ideas?