I want to display records by half hour increments. So, I want something like this
Half Hour Count Met Goal Service Level
08:00 10 8 80%
08:30 18 12 67%
09:00 23 16 70%
09:30 19 14 74%
etc.
The record time is stored as a Date/Time field
I know I can identify the hour by using HOUR() and the half hour by using MINUTE()<30 & MINUTE()>30....
but from there how do I get them to display in a row which accounts for both the hour and half hour?
Thanks.
Half Hour Count Met Goal Service Level
08:00 10 8 80%
08:30 18 12 67%
09:00 23 16 70%
09:30 19 14 74%
etc.
The record time is stored as a Date/Time field
I know I can identify the hour by using HOUR() and the half hour by using MINUTE()<30 & MINUTE()>30....
but from there how do I get them to display in a row which accounts for both the hour and half hour?
Thanks.