Is there a way I can specify how many records per page should be displayed > This is a very basic functionality that needs to go in the deployment at any cost for us ...any ideas.
Here's a working example. The attached report has a self contained dataset and the same table twice, once using a list control with groupping applied. Hope this helps.
Assuming you display your data in a list or a table, you could add a grouping expression like this: =Ceiling(RowNumber(Nothing)/20) This will cause the list/table to group on every 20 rows. On the grouping dialog, select to add a page break on every group and you should get the desired result.
I have a report containing a table and a subreport following the table. If there is enough space (if the table has less records at that page), I want the table and the subreport to be on the same page.But if there is not enough space , I want the following subreport to be on the next page.
COnfiguring Number of records per page?
roeschda
Here's a working example. The attached report has a self contained dataset and the same table twice, once using a list control with groupping applied. Hope this helps.
PravinD
however, it does the same thing. it only displays the first record out of 20
Wizard_SHill
This will cause the list/table to group on every 20 rows. On the grouping dialog, select to add a page break on every group and you should get the desired result.
-- Robert
Mark Phelps
however, it seems at most display 55 records per page
Is it right If so, how to change that Thanks
Jackey Cheung
Hi.
I have a report containing a table and a subreport following the table. If there is enough space (if the table has less records at that page), I want the table and the subreport to be on the same page.But if there is not enough space , I want the following subreport to be on the next page.
How can I do this
Note: The subreport may only be on the last page.
Any help would be appreciated.
ruben@usa
If there were 60 records returned, I got 3 pages (which i want) but on every page you could only see the top record
I clicked
List --> Properties --->Edit Details Group
In the Group On dialog box, I inserted :
=Ceiling(RowNumber(Nothing)/20)
Any ideas on that
Thanks.
Harel Moshe
lgemcor
Instead of a list, use a table and add a grouping the same way. The table detail rows should then show 20 records each.
-- Robert