ASP.net:水晶报表 - 多个页面的子报表
我有一个水晶报表,它有一个标题和一个子报表,其高度锁定在精确的值,因此子报表在页面上最多显示 20 行。
然而,这种限制限制了系统的使用,用户现在要求子报表中的行数不受限制。
我希望保持与当前报表相同的布局,但是子报表的前 20 行将位于第 1 页,接下来的 20 行 (21-40) 将位于第 2 页,依此类推。
我如何修改水晶报表中的逻辑以允许这种功能?
谢谢。
I have a Crystal Report that has a header and a subreport with the height locked at a exact amount so the subreport will display a maximum of 20 rows on the page.
However, this limitation has restricted the use of the system, and the users now require an unlimited number of rows in the subreport.
I wish to keep the same layout as the report currently is, however the first 20 rows of the subreport will be on Page1, the next 20 rows (21-40) will be on Page 2, and so on.
How would I modify the logic in the Crystal Report to allow this kind of functionality?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我手边没有 Crystal Reports,但是您可以尝试在子报表的详细信息“新建页面之后”添加一个公式,方法如下:
对于每 20 条记录,子报表应在详细信息之后分页。
I don't have Crystal Reports handy, but off the top of my head you can try adding a formula to the subreport's detail New Page After, by doing something like this:
For every 20th record, the subreport should page break after the detail.