Grouping time

redclaygirl

New member
Local time
Today, 08:45
Joined
Oct 22, 2005
Messages
8
I am trying to group time entries so that I can say, between 8AM and 10AM there were this number of calls. I have a field called Time_Assigned with numberous time entries (such as 08:15:33 AM) corresponding to another field called Incident_Type (such as medical). The data spans a whole year so I have several thousand time entries and I would like to show how many incident types occur between such and such hours. Thanks again for everyone's generous help.
 
First of all, you have to have an understanding at how Access manipulates Date and Time values. In a nutshell, the Date/Time datatype is actually a special Double number. This whole, or integral, number is determined by how many days have elapsed since December 30, 1899. The fraction determines the time that has elapsed since 12:00 midnight.

Therefore, for midnight on Oct 23, 2005, the days elapsed would be 38,648 since Dec 30, 1899. Therefore, 38648.0 = Oct 23, 2005 12:00 AM

Now, 12:00 pm, or noon, is exactly one half of one day, therefore it's no surprise that the number value for Oct 23, 2005 is 38648.5

Ok, now you want to get all the times between 8:00 AM and 10:00 AM, so we need to work on the fractional part of the double number. 8:00 AM is 8 hours after midnight, so the fraction part of the day is 0.333333333333333. Using the same calculation for 10:00 AM, we find the fraction part of the day is 0.416666666666667.

Therefore, since you have no date ranges, you just need to find records where the fraction part of the date/time group is >=0.333333333333333 and <=0.416666666666667.

Assuming your table is called tblEntry, using the following query will extract all entries that occur between 8:00 and 10:00 am of their particular day. Note the calculaton in the WHERE clause that uses the INT function.

SELECT Incident_Type, Time_Assigned
FROM tblEntry
WHERE ((Time_Assigned) - INT (Time_Assigned) >= 0.333333333333333
AND ((Time_Assigned) - INT (Time_Assigned) <= 0.416666666666667

Go ahead and paste this query into an SQL design box. Make sure you change the name of the table to that of your table name, and I'm assuming your fields are correct. Once you run the query, go back to the design grid, and you can create an aggregate query to group by your Incident_Type field.
 
This statement separates 24 hours into 2 hour chuncks. It does return something that looks strange so I would make a table to convert that to something more usable.

Partition(DatePart("h", YourDate), 0, 23, 2)

It will return x:y where x is the beginning of the range and y is the end of the range. So 8:15 AM would return 8: 9 and 5:25 PM would return 16:17

Make a table of the 12 possible return values (make sure you get the spaces correct. I'm not sure the list below will line up correctly.
0: 1 = 12-2 AM
2: 3 = 2-4 AM
4: 5 = 4-6 AM
6: 7 = 6-8 AM
8: 9 = 8-10 AM
10:11 = 10-12 AM
12:13 = 12-2 PM
14:15 = 2-4 PM
16:17 = 4-6 PM
18:19 = 6-8 PM
20:21 = 8-10 PM
22:23 = 10-12 PM
 

Users who are viewing this thread

Back
Top Bottom