Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用下面的表达式每页仅显示 50 行。
=Ceiling(RowNumber(Nothing)/50)
但它仍然每页仅显示 42 行。Crystal 报告显示得非常好,但 SSRS 报告却没有。
请帮我解决我的问题!
大概这目前在 Visual Studio 中?
删除report_name .data 文件,以便不缓存报告。
将“<code>BreakLocation”设置为“<code>End”,并将“<code>Disable”属性设置为以下表达式:
=IIf(RowNumber(Nothing) Mod 50 = 0, False, True)
我从这里找到了解决方案,
需要将报表的 Interactive Height 属性设置为零,如下所示。