本文介绍了我如何限制行数在表中,而设计RDLC报告?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是新来的Windows桌面应用程序的开发。结果
我在我使用一个表来显示的项目设计在RDLC文件的报告。表按记录数自动扩展。



我要的显示限制在该表中的最多10个的纪录。我如何做到这一点。


解决方案

Step 1: Right Click on your Table(that is next to First Column, Second Row) and Select Add Group
Step 2: Under Add Group - Select Parent Group
Step 3: There you need to click on fx and add this - =Ceiling(Rownumber(nothing)/10).
Step 4: Click Ok and right click the group just created. Give a name to it.
Step 5: Select 2nd option PageBreaks and check 'Between each instance of group'
Step 6: Click on Sorting and Delete exisiting sorting. Thats it.
Step 7: Delete the new Grouping Column.

这篇关于我如何限制行数在表中,而设计RDLC报告?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 02:06