Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Would like to know the number of calls per hour

Status
Not open for further replies.

Rene1024

MIS
Jul 24, 2003
142
0
0
US
Hello,

I have a table that logs calls made to hour hotline.

I have a table with the caller's information along with a field for date of the call and time of the call.

I would like to design a query that tells me proximately how many calls are received per hour, per specified date. This would help determine the busiest time of day and staff accordingly.

How can I accomplish this?

Rgds.

Rene
 
SELECT COUNT(CallsReceived) FROM YourTable WHERE date = #" & YourDate & "#";

"Rome did not create a great empire by having meetings, they did it by killing all those who opposed them."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top