How to set minimum row of table in rdlc or ssrs report?

北战南征 提交于 2019-12-06 13:41:49

问题


Let say I want to set minimum row in the table, When my data is not full in the table then just insert blank row to full fill it.


回答1:


This question looks so easy but it's really hard to find a solution to do it

So I need to share it here

1.In the table set header and 1 bound detail row

2.Insert blank row in the table as much as you want to fill the row (Outside Group)

3.Right click on the second row (the first is detail row) and click right click and click Row Visibility note: You can input the next step code into Hidden Properties to but I found it not works properly so I recommend this way

4.Click Show or hide based on an expression then insert this code then OK

 =IIF(CountRows() < 2, False, True)

5.Repeat the steps on every blank row and change condition number

Ex. the third row insert this code

=IIF(CountRows() < 3, False, True)

Ex. the fourth row

=IIF(CountRows() < 4, False, True)

What it does if your data has to use that row then it just hides the blank row and replace with your data

That it.

I post this because I hope to found this solution on the first minute when I was searching about this



来源:https://stackoverflow.com/questions/37268109/how-to-set-minimum-row-of-table-in-rdlc-or-ssrs-report

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!