counting records in a date range

J

Joyce

I have a monthly report that reflects research cases. The
report displays date received and date resolved. I need
to capture all received cases for a period of time. In my
control source for DateReceived I want to count all cases
received from 02/01/04 to 02/29/04. Any suggestions.
Thank you.
 
M

Marshall Barton

Joyce said:
I have a monthly report that reflects research cases. The
report displays date received and date resolved. I need
to capture all received cases for a period of time. In my
control source for DateReceived I want to count all cases
received from 02/01/04 to 02/29/04.

Not sure I understand what you want here, but try using a
text box in the report footer section. Set its control
source expression to:
=Abs(Sum(DateReceived Between #02/01/04# And #02/29/04#))

If that gives the result you're looking for, post back with
more information about how the report is opened, etc. and
we'll see if there's a way to parameterize the dates so you
don't have to change the report every month.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top