1

I am trying to bind multiple rdlc reports into one pdf file, however when using the expression:

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

It doesn't sync/continue to use the page numbering, for each new rdlc it breaks and starts the page numbering again. Is there anyway around this?

Jeroen
  • 60,696
  • 40
  • 206
  • 339
Mark W
  • 85
  • 2
  • 11
  • What do you mean by "bind into one pdf file"? You have a master report with multiple subreports? – Jeroen Sep 12 '12 at 11:43

1 Answers1

1

Have you tried Globals.OverallPageNumber and Globals.OverallTotalPages?

Denis Palnitsky
  • 18,267
  • 14
  • 46
  • 55