Used below expression to show only 50 Rows per page.
=Ceiling(RowNumber(Nothing)/50)
But still it shows only 42 rows per page. Crystal report shows perfectly fine but SSRS report doesn't.
Used below expression to show only 50 Rows per page.
=Ceiling(RowNumber(Nothing)/50)
But still it shows only 42 rows per page. Crystal report shows perfectly fine but SSRS report doesn't.
Presumably this is within Visual Studio at the moment?
Delete the report_name.data file so that the report is not cached.
Set the “BreakLocation
” to “End
” and set the “Disable
” property to the expression below:
=IIf(RowNumber(Nothing) Mod 50 = 0, False, True)
I found the solution from here,
Need to set the Interactive Height property of the report to zero as shown below.