Help w/ Access 97 Query
I need the average of a count. (Actually, I don't even know what I need really). I have a timestamp for calls. I need to break them down into a daily count, then average that.
I tried
SELECT avg(Count(*)) AS Expr1
FROM tblNewCalls
WHERE (((tblNewCalls.Date)>=Date()-7));
But of course, no go. I'm new to SQL and VBA but know access pretty good otherwise...
Any suggestions on how to accomplish this will be greatly appreciated. Should I use a subquery for this?
Thanks.
I need the average of a count. (Actually, I don't even know what I need really). I have a timestamp for calls. I need to break them down into a daily count, then average that.
I tried
SELECT avg(Count(*)) AS Expr1
FROM tblNewCalls
WHERE (((tblNewCalls.Date)>=Date()-7));
But of course, no go. I'm new to SQL and VBA but know access pretty good otherwise...
Any suggestions on how to accomplish this will be greatly appreciated. Should I use a subquery for this?
Thanks.