Hi,
I have a report, in which the report should print 10 rows strictly. How to limit the no. of rows in the details section in rdlc?
EG: If the row has less or greater than 10 rows of values, then it should print 10 rows strictly. :-k
With warm regards,
Thankesh
***Learn to lead***
0
Comments
I tried the following ways by writing the expression in the Parent Grouping of table.
=Int((RowNumber(Nothing)-1)/10)
=Floor((RowNumber(Nothing)-1)/10)
=Ceiling((RowNumber(Nothing))/10)
But, nothing works. ](*,)
Thankesh
***Learn to lead***
Thankesh
***Learn to lead***
It works as expected... More or Less...
For some reports, you may want to print a new page for each new record. In a Classic report layout, you use either the NewPagePerRecord property or the CurrReport.NEWPAGE property. In a client report definition (RDLC) report layout, the NewPagePerRecord property and the CurrReport.NEWPAGE property are not supported. To print a new page for each record in an RDLC report layout, you must do one of the following:
http://msdn.microsoft.com/en-us/library/dd338694.aspx
Perhaps a PageSize Group of 10
http://www.BiloBeauty.com
http://www.autismspeaks.org
The no. of rows should show is strictly to 10. So, hidden property won't work it seems since i tried with that property. In rdlc report I have two table boxes and I need to restrict those two tables 10 rows strictly within a single page. ](*,)
Thankesh
***Learn to lead***
Floor((RowNumber(Nothing) - 1) / 10) or Ceiling((RowNumber(Nothing)) / 10)
And set Page break at end for that group
ArcherPoint, Inc http://www.archerpoint.com
Blog: http://www.navisionworld.com
skkulla