Reset Page numbering in groups on a report

G

Guest

="Page " & [Page] & " of " & [Pages]
I need the [Pages] part of this to give me the total number of pages in the
group not the total for the whole report.

IE... 1 of 3, 2 of 3, 3 of 3 (for Group)

not 1 of 1033, 2 of 1033, 3 of 1033 (for whole Report)

I already have the reset working for the [Page] in the group

Any help or suggestions would be greatly appreciated
 
G

Guest

Thanks, it worked for the most part. I did have to tweak one lines of the
code though.

Private Sub PageFooter_Format(Cancel As Integer, FormatCount As Integer) -
as it is on the webpage

Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer) - as it is for my use

Chris Reveille said:
take a look at


http://www.mvps.org/access/reports/rpt0013.htm


farls said:
="Page " & [Page] & " of " & [Pages]
I need the [Pages] part of this to give me the total number of pages in the
group not the total for the whole report.

IE... 1 of 3, 2 of 3, 3 of 3 (for Group)

not 1 of 1033, 2 of 1033, 3 of 1033 (for whole Report)

I already have the reset working for the [Page] in the group

Any help or suggestions would be greatly appreciated
 

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