I have report, based on a query, that displays a list of all people not available for work during a given time frame. The report lists the employee's name, the reason, and the time frame of their non-availability. The underlying query has 5 fields: [Name], [StartDate], [Description], [StartDateTime], and [EndDateTime]. [StartDate] is just a formatted version of [StartDateTime] and is used to sort the query result and also as selection criteria for the date range. As it now stands, there is no sorting/grouping in the report, and the output looks something like this:
What I want the report to do is display the unavailable personnel for EACH DAY during the given time frame, so scheduling staff can, at a glance, know who's gone for any given day. Yes, I know they could just print out the report for a single day, but they like to keep the info in a "week-at-a-glance" or "month-at-a-glance" format. So, ideally the report would look something like:
How can I do this? Thanks!
Ken S.
Code:
Personnel Unavailable
8/1/03 - 8/7/03
Name: Reason: From: To:
Doe, J. Vacation 1630, 7/15/03 0800, 8/15/03
Roe, J. Sick Leave 0001, 8/1/03 1200, 8/2/03
Smith, S. Training 0800, 8/2/03 1630, 8/10/03
Jones, J. Vacation 1630, 8/7/03 0800, 8/15/03
etc.
What I want the report to do is display the unavailable personnel for EACH DAY during the given time frame, so scheduling staff can, at a glance, know who's gone for any given day. Yes, I know they could just print out the report for a single day, but they like to keep the info in a "week-at-a-glance" or "month-at-a-glance" format. So, ideally the report would look something like:
Code:
Personnel Unavailable
8/1/03 - 8/7/03
8/1/03:
Name: Reason: From: To:
Doe, J. Vacation 1630, 7/15/03 0800, 8/15/03
Roe, J. Sick Leave 0001, 8/1/03 1200, 8/2/03
8/2/03:
Name: Reason: From: To:
Doe, J. Vacation 1630, 7/15/03 0800, 8/15/03
Roe, J. Sick Leave 0001, 8/1/03 1200, 8/2/03
Smith, S. Training 0800, 8/2/03 1630, 8/10/03
8/3/03:
Name: Reason: From: To:
Doe, J. Vacation 1630, 7/15/03 0800, 8/15/03
Smith, S. Training 0800, 8/2/03 1630, 8/10/03
etc...
How can I do this? Thanks!
Ken S.