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.
如何设置 rdlc 报告表中显示的最小行数?如果数据库只返回 5 行,但我想要 15 行,甚至 10 行显示为空白。
我只能考虑限制 SSRS 报告中显示的行数。你这样做的方法是在组上写一个表达式
=Ceiling((RowNumber(Nothing)) / 20)
并在开始时设置分页符,在结束时设置分页符
想到的最简单的方法是您可以将带有空数据的其他行添加到传递给 rdlc 的数据集中。
这可以在用于填充数据表的存储过程(或多语句函数)中完成,也可以在将其交给报告之前直接针对应用程序代码中的数据表完成。