Use a simple query to return the results you want.
Select
datepart(hh,LogTime) As LogHour,
sum(CallCount) As TotCount
From table
Group By datepart(hh,LogTime)
You could insert the result into another table, display, or process it however you need. Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it and comment if you have time.
NOTE: Reference to the FAQ is part of my signature and is not directed at any individual.