Jeff~
That worked well. Thanks for your help. I'm sure I will
have more questions in the future.
~Christina
-----Original Message-----
Hi Christina,
That helps a lot thank you. I think I understand
everything, but I'm making a assumption that you
simply want to see a total for all items completed each
day as well as a total for all items
completed during whatever time span you would like. My
instructions below will NOT total the number
of items processed by EACH individual item for the time
frame specified. That is something
different.
Doing a quick test with some sample data I *believe* I
was able to get the results you desire by
just using the report wizard. Open the Sorting and
Grouping dialog box ( View | Sorting and
Grouping ) and tell me what you see there. In my report I have the following item:
Field/Expression: Sort Order:
ProcessDate Ascending
(I named my field ProcessDate)
In the lower half of this sorting box I have this:
Group Header: Yes
Group Footer: Yes
Group On: Day
Group Interval: 1
Keep Together: No
What this is doing is telling Access to sort the date by
each day and create a section Header and
Footer for this particular group. This is the first step.
The next step is to create an unbound text box in the
ProcessDate Footer section of the report. Here
we will total all the items completed. I used this as
the Control Source for the text box:
=Nz(Sum([ItemsCompleted]))
This gives me a count of all the items completed for
that day. (My field was called ItemsCompleted)
Next, I put another text box in the Report Footer
section of the report. Here we will total all the
items completed for the time period specified. I use the same Control Source:
=Nz(Sum([ItemsCompleted]))
When I run the report I see each day's processes listed,
followed by a total for that day. At the
end of the report I see a total for all the days specified.
Is this what you are looking for?