I have an interesting challenge in a report I am doing. Wondering if I can get some feedback on how to approach it? I am creating a daily schedule of booked appointments with field such as name, reason for appt, etc. I have a table were the user can define the start and end time of their appointment day as well as the interval (start 8:00 am with 15 min. intervals would give me appt times of 8:00, 8:15, 8:30, 8:45, etc). The users want their interval times to display regardless if the time slot is booked or not, another caveat is that a counsellor can double and triple book (ie. 8:15 could have three appointments). the end result should look something like this (over simplified):
8:00 Bill Smith
8:15 Tom Jones
8:15 Bob Jackson
8:30 <blank>
8:45 Wilma Stimpson
9:00 Ralph Kramden
Just looking for efficient ideas to do this? Should I do a group by on the time/intervals? Appreciate any help.
8:00 Bill Smith
8:15 Tom Jones
8:15 Bob Jackson
8:30 <blank>
8:45 Wilma Stimpson
9:00 Ralph Kramden
Just looking for efficient ideas to do this? Should I do a group by on the time/intervals? Appreciate any help.