Running total in group header

  • Thread starter Thread starter Rick Allison
  • Start date Start date
R

Rick Allison

I want to display a running total count at the beginning of the list of rows that are displayed in a report. Can that be done?

I use Access 2000 and beyond. I just count the number of rows printed and in the group footer I print out the count. What I want to do is print that count in the group header. Is that possible?

Thanks,

Rick
 
-----Original Message-----
I want to display a running total count at the beginning
of the list of rows that are displayed in a report. Can
that be done?
I use Access 2000 and beyond. I just count the number of
rows printed and in the group footer I print out the
count. What I want to do is print that count in the group
header. Is that possible?
Thanks,

Rick

One way is to put a text box in the header and make the
control source =Count([SomeField])
where the field is one that will always have data in it
such as the primary key field.
 
Back
Top