0

I'm building a report which is about 50 pages when rendered. it is like a power point presentation. The only issue is I want to display page numbers from second page starting from '1'. When I use the global page number function in the footer it shows the page no. on the first page also. It'd be a great help if anybody can help me with work around..

akjoshi
  • 15,374
  • 13
  • 103
  • 121
Avinash
  • 1,273
  • 4
  • 16
  • 23

1 Answers1

7

You should place a textbox to write the page number only (label "Page:, for example, should be in a separate textbox) and use an expression, something like this:

=IIF(Globals!PageNumber = 1, "", cStr(Globals!PageNumber-1))
Andrea
  • 1,838
  • 1
  • 13
  • 7