I have a table with pay dates (dates are unique)
I have another table listing the total number of hours available for sick, vacation, etc...
I have another table with each employees name, number of hours worked and the date they worked
On my report I am listing:
Date worked Employee Hours worked
I also need to list for this date worked the total number of hours available for sick, vacation, etc. for that particular date (not that particular employee) (kind of like a side by side report but I would like the dates to line up)
01/01/11 John Brown 40.0 5 6 7
however when I run my queries/reports it always returns duplication values on the number of hours available for sick, vacation, etc.. like:
01/01/11 John Brown 40.0 5 6 7
01/01/11 Sara Smith 40.0 5 6 7
01/01/11 Besty Blue 40.0 5 6 7
(in other words, if there are three entries for the same date, it duplicates the totals for the other columns I need to show....I just want to show for these 3 employees the available hours (5 6 7) 1 time like: (total hours available for all employees who worked that particular date)
01/01/11 John Brown 40.0 5 6 7
01/01/11 Sara Smith 40.0
01/01/11 Besty Blue 40.0
01/15/11 John Brown 40.0 9 3 4
01/15/11 Sara Smith 40.0
01/15/11 Besty Blue 40.0
Am I trying to combine too much information on the same report? I really to show it this way on the report for my manager.
(I cannot send you the database, it is private. I have changed some of the details above but same concept)