|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Today @ 9:16 AM
Points: 76,
Visits: 1,085
|
|
I have a report. My report has 898 pages. When i first load the report the page counter states that the report is:
1 of 2 ?
Then when i click next page it states
2 of 3 ?
Then 3 of 4 ?
and so forth. Does anyone know why this happens in Report Manager.
I would imagine that when the report loads it should state: 1 of 898, then when you click next 2 of 898.
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 2:01 PM
Points: 27,
Visits: 122
|
|
| I believe this is because each page of the report is rendered as you go through them. If you hit the double arrow to take you to the last page, then SSRS "knows" you have 898 pages and will then display the number of pages properly.
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 11:32 AM
Points: 26,
Visits: 178
|
|
You can always use something like =CountRows("DataSetName") to show the total number of records returned from the data set. The Report Viewer renders the information so the page count will not show the total page count. But you can add the record count using code on the report itself.
HTH.
Mike
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Saturday, May 18, 2013 8:24 PM
Points: 7,
Visits: 46
|
|
please make at bottom expression as below
="Page " & Globals!PageNumber & " of " & Globals!TotalPages
Thanks Raj
|
|
|
|