Isaac Bolinger
Isaac Bolinger

Reputation: 7388

How do I get page numbers to appear on rldc microsoft reports (local mode) when exported to pdf?

I need the page numbers to appear on the pdf export of the report. I'm using reportviewer 9. Anyone know how to do this?

Thanks,

Isaac

Upvotes: 19

Views: 32308

Answers (2)

Nandkishor Jaring
Nandkishor Jaring

Reputation: 1

Just right click on Text Box -> Expression and write down this

="Page " & Globals.PageNumber & " of " & Globals.TotalPages

Its done.

Upvotes: 0

Isaac Bolinger
Isaac Bolinger

Reputation: 7388

What you have to do is make a page header, using Report->Page header

Make a text box in it and put this in there =Globals.PageNumber & " of " & Globals.TotalPages

Upvotes: 49

Related Questions