Display individual count in text box

A

A Hopper

On a report I have a text box "UniqueLabelPack". I want to
add a text box that would count each "UniqueLabelPack" and
display the result beside it.

I would also like to have just the total count of
the "UniqueLabelPack" in a seperate text box.
Can this be done with a DCount in the On Print event or
would that just display the total count?

Example: Count/Number UniqueLabelPack
1 5682325
2 5682326
3 5682327
4 6028351

Total 4

Thank you for your help
Allan
 
D

Duane Hookom

Add a text box with a control source of =1 and Running Sum set to Over All.
Then add a text box to the report footer with a control source of =Count(*).
 
A

A Hopper

Duane
It couldn't easy when you know what to do.
Thank you very much for you help.

Allan
 
Top