SSRS 中的页码

发布于 2024-12-04 16:56:00 字数 118 浏览 1 评论 0原文

我正在构建一份报告,渲染后大约有 50 页。这就像一个幻灯片演示。唯一的问题是我想显示从“1”开始的第二页的页码。当我在页脚中使用全局页码功能时,它会显示页码。也在第一页上。如果有人能帮助我解决问题,那将是一个很大的帮助。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千と千尋 2024-12-11 16:56:00

您应该放置一个文本框来仅写入页码(例如,标签“Page:应该位于单独的文本框中)并使用表达式,如下所示:

=IIF(Globals!PageNumber = 1, "", cStr(Globals!PageNumber-1))

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))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文