I am trying to figure out a way to get the page n of m without making the third pass. We have reports that print several hundred pages and use sub reports and desire to have the page n of m in the header but cannot as it puts a load on the Servers.
I believe this will make a third pass because using the TotalPagecount method. Can anyone verify this please...
// Page N of M formula without making additional pass
NumberVar startNum := 1;
Page + ToText((PageNumber + startNum), 0) +
of + ToText((TotalPageCount + startNum), 0)
I believe this will make a third pass because using the TotalPagecount method. Can anyone verify this please...
// Page N of M formula without making additional pass
NumberVar startNum := 1;
Page + ToText((PageNumber + startNum), 0) +
of + ToText((TotalPageCount + startNum), 0)