How to Display Page Number in Report Body of SSRS 2008 R2?

后端 未结 5 910
逝去的感伤
逝去的感伤 2020-12-06 07:01

I think a lot of developers are facing the problem of try to display page numbers by using SSRS 2008 R2.

There is an alternative solution <

5条回答
  •  一个人的身影
    2020-12-06 07:36

    If you are using SQL Server 2016 Report Builder, this expression worked with me.

    =Globals!PageNumber.ToString() +"/" + Globals!TotalPages.ToString()
    

提交回复
热议问题