How to get the page number of report?

A

Andreas

Thank you, guys.
I want to get the page number of one report. I have added one group section
in the report.
Thanks again.
 
W

Wayne-I-M

Hi

Use this in a text box [Page]

You can add to this to make it look a little better

="This is page number "&[Page]

Or
="This is page number "&[Page]&" of " & [Pages]

Or
="This is page number "&[Page]&" of " & [Pages]& " printed on "&
(Format(Date(),"dddd - dd - mmm - yyyy"))

There are many possiblitites

Hope this helps
 
A

Andreas

Maybe I made a misunderstanding.
In the first page of this report, I want to show how many pages in this
report in a label.
Maybe it is the count of pages, not number.
Thank you.
--
No pains, no gains.


Wayne-I-M said:
Hi

Use this in a text box [Page]

You can add to this to make it look a little better

="This is page number "&[Page]

Or
="This is page number "&[Page]&" of " & [Pages]

Or
="This is page number "&[Page]&" of " & [Pages]& " printed on "&
(Format(Date(),"dddd - dd - mmm - yyyy"))

There are many possiblitites

Hope this helps


--
Wayne
Manchester, England.



Andreas said:
Thank you, guys.
I want to get the page number of one report. I have added one group section
in the report.
Thanks again.
 
A

Andreas

Sorry, I am wrong. It works. :) Thanks very very much. I owe you one beer.

--
No pains, no gains.


Wayne-I-M said:
Hi

Use this in a text box [Page]

You can add to this to make it look a little better

="This is page number "&[Page]

Or
="This is page number "&[Page]&" of " & [Pages]

Or
="This is page number "&[Page]&" of " & [Pages]& " printed on "&
(Format(Date(),"dddd - dd - mmm - yyyy"))

There are many possiblitites

Hope this helps


--
Wayne
Manchester, England.



Andreas said:
Thank you, guys.
I want to get the page number of one report. I have added one group section
in the report.
Thanks again.
 
Top