S
Stan
I have a simple database that tracks telephone calls. At the end of the
month I use a simple query to count the number of calls that have been
received during the month by:-
SELECT Count(Call_Log.Call_Start) AS CountOfCall_Start
FROM Call_Log
WHERE (((Call_Log.Call_Date) Between #10/1/2004# And #10/31/2004#));
This gives the result 674 calls.
However if I either physically count each row in the data set or highlight
and paste them into Excel the count comes to 635 calls!!!!!
Have tried using the Call_Date for the count and also different dates but
there still seems to be a discrepancy between the computed result and hand
counting them.
Am I going mad????
Any sane answer would be very much appreciated......
MTIA
Stan
month I use a simple query to count the number of calls that have been
received during the month by:-
SELECT Count(Call_Log.Call_Start) AS CountOfCall_Start
FROM Call_Log
WHERE (((Call_Log.Call_Date) Between #10/1/2004# And #10/31/2004#));
This gives the result 674 calls.
However if I either physically count each row in the data set or highlight
and paste them into Excel the count comes to 635 calls!!!!!
Have tried using the Call_Date for the count and also different dates but
there still seems to be a discrepancy between the computed result and hand
counting them.
Am I going mad????
Any sane answer would be very much appreciated......
MTIA
Stan