强制 SSRS 2005 打印新页面
我的页脚上有一个字段,其中可能包含文本框支持的更多文本。如果是这样,我需要报告打印另一页,即使它完全是空的,仅包含页脚字段。
基本上,如果条件成立,我希望报表打印一个新页面,并在其中显示我的页脚,即使没有其他内容可打印。
我怎样才能实现这一点,最好使用字段表达式?
如果您有一个不是字段表达式的解决方案(例如外部代码),您能否向我指出它的基础知识?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在任何具有 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.
=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