开发者

Page numbers in SSRS

开发者 https://www.devze.com 2023-04-05 17:42 出处:网络
I\'m building a report which is about 50 pages when rendered. it is like a power point presentation. The only issue is Iwant to display page numbers from second page starting from \'1\'. When I use th

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..


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))
0

精彩评论

暂无评论...
验证码 换一张
取 消