Record Counter

  • Thread starter Thread starter injanib via AccessMonster.com
  • Start date Start date
I

injanib via AccessMonster.com

I want to add a counter in my form that can count and display how many
records are in the report.

Help!!
 
You want to display a record counter in your report?

To count all the records in a report, create an 'Unbound' text box in the
Report Footer and set the Control Source to:
=Count([AnyFieldName])

To count records for each page, do the same in the Page Footer. To count
records for each Group, do the same in the Group Footer (if you have one).

Steve
 
Thanks. That is exactly what I wanted.
You want to display a record counter in your report?

To count all the records in a report, create an 'Unbound' text box in the
Report Footer and set the Control Source to:
=Count([AnyFieldName])

To count records for each page, do the same in the Page Footer. To count
records for each Group, do the same in the Group Footer (if you have one).

Steve
I want to add a counter in my form that can count and display how many
records are in the report.

Help!!
 

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

Back
Top