I have several blocks of data in the format below:
This is the datasheet view of a MS Access table.
Block Time Route
004-02 06:29 4
004-02 06:39 4
004-02 06:43 4
004-02 06:49 4
004-02 06:53 4
004-02 07:00 18
004-02 07:07 18
004-02 07:12 18
004-02 07:16 18
004-02 07:19 18
004-02 07:24 18
004-02 07:36 18
004-02 07:44 18
004-02 07:47 18
004-02 07:51 18
004-02 07:56 4
004-02 08:06 4
004-02 08:12 4
004-02 08:17 4
004-02 08:23 4
004-02 08:27 4
004-02 08:39 4
004-02 08:43 4
004-02 08:49 4
004-02 08:53 4
004-02 09:00 18
004-02 09:07 18
004-02 09:12 18
004-02 09:16 18
004-02 09:19 18
004-02 09:24 18
004-02 09:33 18
004-02 09:41 18
004-02 09:44 18
004-02 09:48 18
004-02 09:53 4
004-02 10:03 4
004-02 10:09 4
004-02 10:14 4
004-02 10:20 4
004-02 10:24 4
004-02 10:54 4
004-02 10:58 4
004-02 11:05 4
004-02 11:10 4
Would like the data in the format below.
MinTime MaxTime Route
6:29 6:53 4
7:00 7:51 18
7:56 8:53 4
9:00 9:48 18
9:53 11:10 4
Can I use a Group By or Totals query to do this? Is there a function or procedure that might rearrange the Min/Max time in the format above?
This is the datasheet view of a MS Access table.
Block Time Route
004-02 06:29 4
004-02 06:39 4
004-02 06:43 4
004-02 06:49 4
004-02 06:53 4
004-02 07:00 18
004-02 07:07 18
004-02 07:12 18
004-02 07:16 18
004-02 07:19 18
004-02 07:24 18
004-02 07:36 18
004-02 07:44 18
004-02 07:47 18
004-02 07:51 18
004-02 07:56 4
004-02 08:06 4
004-02 08:12 4
004-02 08:17 4
004-02 08:23 4
004-02 08:27 4
004-02 08:39 4
004-02 08:43 4
004-02 08:49 4
004-02 08:53 4
004-02 09:00 18
004-02 09:07 18
004-02 09:12 18
004-02 09:16 18
004-02 09:19 18
004-02 09:24 18
004-02 09:33 18
004-02 09:41 18
004-02 09:44 18
004-02 09:48 18
004-02 09:53 4
004-02 10:03 4
004-02 10:09 4
004-02 10:14 4
004-02 10:20 4
004-02 10:24 4
004-02 10:54 4
004-02 10:58 4
004-02 11:05 4
004-02 11:10 4
Would like the data in the format below.
MinTime MaxTime Route
6:29 6:53 4
7:00 7:51 18
7:56 8:53 4
9:00 9:48 18
9:53 11:10 4
Can I use a Group By or Totals query to do this? Is there a function or procedure that might rearrange the Min/Max time in the format above?