ASP.net:水晶报表 - 多个页面的子报表

发布于 2024-09-18 00:27:11 字数 222 浏览 5 评论 0原文

我有一个水晶报表,它有一个标题和一个子报表,其高度锁定在精确的值,因此子报表在页面上最多显示 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 技术交流群。

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

发布评论

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

评论(1

吹泡泡o 2024-09-25 00:27:11

我手边没有 Crystal Reports,但是您可以尝试在子报表的详细信息“新建页面之后”添加一个公式,方法如下:

RecordNumber Mod 20 = 0

对于每 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:

RecordNumber Mod 20 = 0

For every 20th record, the subreport should page break after the detail.

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