Okay, I have two tables. EmployeeInformation which contains fields EmployeeNum (Auto), LastName, FirstName, Active (True/False), and EmployeeHours which has TransactionNum,(auto), EmployeeID (tables are joined on EmployeeNum & EmployeeID) TransactionDate, and HoursWorked.
The source for the report is a query containing fields LastName, FirstName, HoursWorked, TransactionDate, EmployeeID, and Active. It uses the criteria Active = "True" and TransactionDate Between [Enter Start Date] And [Enter End Date].
I would like the Report to display something like this:
Day Worked Last Name First Name Hours Worked Total Hrs
1-1-08
Baldwin Debbie 8 8
Banks Darnell 8 8
Clark Tony 6 6
1-2-08
Baldwin Debbie 8 16
Banks Darnell 8 16
1-3-08
Banks Darnell 8 24
Clark Tony 8 14
I hope this helps to lessen the confusion I've caused you. Thanks for your help.