Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
 I have a report that contains a table item.  I need to display 30 rows in the table item whether there is data.Is there any setting for a rdlc report table item to do this?

I wont to fllowing Output,
 
Page 1
1
2
3
.
.
30
 
Page 2
31
32
.
.
60
Page 3
61
.
.
 
Like This
Posted
Updated 15-Dec-14 21:39pm
v3
Comments
vajihe.mirzaei 12-Dec-14 5:55am    
you need to use header & footer in rdlc .
this solution help you print display 30 rows in the table .
[no name] 12-Dec-14 5:59am    
My table Inside the Rectangle i wont to stop expanding Rectangle height using limit Rows in table.

1 solution

You can define that on group created
for e.g. group expression set to Int((RowNumber(Nothing)-1)/30) will break the page after each 30 rows.

refer this
set-page-break-after-a-number-of-rows
 
Share this answer
 
Comments
[no name] 16-Dec-14 3:38am    
I wont to fllowing Output,

Page 1
1
2
3
.
.
30

Page 2
31
32
.
.
60
Page 3
61
.
.

Like This
Shweta N Mishra 16-Dec-14 3:44am    
You need to create a Page Break group and apply the given expression, did you tried it ?
[no name] 16-Dec-14 4:42am    
yas I try lot of expression.I can't get my Out put.

am use this one.Int((RowNumber(Nothing)-1)/30) Out Put is

Page 1

1

Page 2

2

Page 3
3
......

page 30

30

Like this
ChiragPatel5916 27-Feb-18 6:46am    
Have You Found The Solution?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900