I have a field in a table with field type as Date/Time and the format for the field is Short Time.
I need to get the count of records between 15 minutes interval.
Example :
Tbl Structure as
Fld1 as Text
Fld2 as Date/Time
Fld3
Fld4
etc
If the records are like below
rec1 00:12
rec2 00:14
rec3 00:16
rec4 00:32
rec5 00:31
rec6 00:45
I need to get the count of records between 00:00 to 00:15
00:15 to 00:30 like that for 24 hour period.
like a cross tab query result with column heading as
00:00-00:15 00:16-00:30
Pls Help
Thank you all
I need to get the count of records between 15 minutes interval.
Example :
Tbl Structure as
Fld1 as Text
Fld2 as Date/Time
Fld3
Fld4
etc
If the records are like below
rec1 00:12
rec2 00:14
rec3 00:16
rec4 00:32
rec5 00:31
rec6 00:45
I need to get the count of records between 00:00 to 00:15
00:15 to 00:30 like that for 24 hour period.
like a cross tab query result with column heading as
00:00-00:15 00:16-00:30
Pls Help
Thank you all
Comment