Count number of records in report footer

  • Thread starter Troper via AccessMonster.com
  • Start date
T

Troper via AccessMonster.com

I have a Purchase Orders Database.
I would like a field that count and display the number of records in a report.


One of my report would display all orders processed in a specific date. For
example, If I run a Last Month report, it will display all orders made during
August. I would like a field that count and display the number of orders for
that month.

How can i accomplish this? any ideas?

Please help!

Thanks,

Troper
 
M

Marshall Barton

Troper said:
I have a Purchase Orders Database.
I would like a field that count and display the number of records in a report.


One of my report would display all orders processed in a specific date. For
example, If I run a Last Month report, it will display all orders made during
August. I would like a field that count and display the number of orders for
that month.


If you have one record per order, then a report header or
footer text box can use the expression =Count(*)
 
T

Troper via AccessMonster.com

I used that expression but I have more than one record per order. I want it
only to count the number of orders per report or page.

Marshall said:
I have a Purchase Orders Database.
I would like a field that count and display the number of records in a report.
[quoted text clipped - 3 lines]
August. I would like a field that count and display the number of orders for
that month.

If you have one record per order, then a report header or
footer text box can use the expression =Count(*)
 
M

Marshall Barton

Then your report has some kind of organization that you have
yet to reveal.

At this point all I can do is make the standard suggestion:
Use a RunningSum text box in the Purchase Orders group
footer section.
--
Marsh
MVP [MS Access]

I used that expression but I have more than one record per order. I want it
only to count the number of orders per report or page.

Marshall said:
I have a Purchase Orders Database.
I would like a field that count and display the number of records in a report.
[quoted text clipped - 3 lines]
August. I would like a field that count and display the number of orders for
that month.

If you have one record per order, then a report header or
footer text box can use the expression =Count(*)
 

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