Reputation: 7388
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
Reputation: 1
Just right click on Text Box -> Expression and write down this
="Page " & Globals.PageNumber & " of " & Globals.TotalPages
Its done.
Upvotes: 0
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