强制 SSRS 2005 打印新页面

发布于 2024-10-14 18:39:08 字数 205 浏览 1 评论 0原文

我的页脚上有一个字段,其中可能包含文本框支持的更多文本。如果是这样,我需要报告打印另一页,即使它完全是空的,仅包含页脚字段。

基本上,如果条件成立,我希望报表打印一个新页面,并在其中显示我的页脚,即使没有其他内容可打印。

我怎样才能实现这一点,最好使用字段表达式?

如果您有一个不是字段表达式的解决方案(例如外部代码),您能否向我指出它的基础知识?

I have a field on the footer that may contain more text the the textbox would support. If it does, I need the report to print another page, even if it's completely empty, containing only the footer field.

Basically, if a condition is true, I want the report to print a new page, displaying my footer in it, even if there's nothing else to be printed.

How can I achieve this, preferably with field expressions?

And if you have a solution that's not a field expression (external code for example), could you also point me to the basics of it?

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

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

发布评论

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

评论(2

╰沐子 2024-10-21 18:39:08

在任何具有 PageBreak 属性的块上,您可以选择开始、结束或无。通过选择结束,将在块之后插入分页符。

On any block you have the property PageBreak, you can choose begin, end or none. By choosing end, a page break will be insered after the block.

转角预定愛 2024-10-21 18:39:08

=iif(Globals!PageNumber Mod 2,True,False) 这帮助我仅在页脚的偶数页上显示(可见性)文本框

=iif(Globals!PageNumber Mod 2,True,False) this helped me to show (visibility) a text box on even pages only from my footer

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