How can I add the count function to my report?

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I created a very simple database to record the DHL packages that we send out
here at work. Everything in the report is working great! However, there is
one more thing that I would like to add to it.

Could you tell me how to add the count function to my report so that when I
run it, I want to be able to see how many DHL packages were entered instead
of having to manually count them? If you could help me out, I would
certainly appreciate it very much. Thank you.
 
Steve,
In your Report Footer, or any Group Footer, an unbound text control with
a ControlSource of...
(say you have a field called DHLNumber)
= Count(DHLNumber)
will give you the count.
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
Back
Top