I'm using crystal 9 with csv file.
I have a start_time and end time. I need to find out how many classes per hour so:
Example of csv file:
class start_time end_time
1-1 8:05:00 9:25:00 - so this class would be counted in the 8 and 9 am hours
2-2 8:30:00 9:30:00 - so this class would be counted in the 8 and 9 am hours
3-3 8:00:00 17:00:00 - so this class would be counted in the 8, 9, 10, 11 am, 12 pm, 1, 2, 3, 4 pm hours
4-4 18:00:00 10:00:00 - so this class would be counted in the 6, 7, 8 and 9 pm hours
Hour # of Classes
8am 3
9am 3
10am 1
11am 1
12pm 1
1pm 1
2pm 1
and so on
Help is appreciated.
I have a start_time and end time. I need to find out how many classes per hour so:
Example of csv file:
class start_time end_time
1-1 8:05:00 9:25:00 - so this class would be counted in the 8 and 9 am hours
2-2 8:30:00 9:30:00 - so this class would be counted in the 8 and 9 am hours
3-3 8:00:00 17:00:00 - so this class would be counted in the 8, 9, 10, 11 am, 12 pm, 1, 2, 3, 4 pm hours
4-4 18:00:00 10:00:00 - so this class would be counted in the 6, 7, 8 and 9 pm hours
Hour # of Classes
8am 3
9am 3
10am 1
11am 1
12pm 1
1pm 1
2pm 1
and so on
Help is appreciated.