Fixed number of rows In Access Report

萝らか妹 提交于 2019-12-14 02:22:54

问题


I am having tried a access 2007 report with fixed numbers of rows (records) per page. For example, I like to fix total number of records (rows) to 10 per page while underlying query might have 5 records in some criteria or 15 records in some case. If any idea, please share me.

TIA ProNek


回答1:


You can us a pagebreak with the visible property set to false and then make it visible when a counter reaches the relevant number.

Further information: http://support.microsoft.com/kb/119075




回答2:


You can count and insert page break on the report's body (or section) format event. This event fires on every record. You can place a pagebreak at the end of the section and make it visible when you need to print on next page.



来源:https://stackoverflow.com/questions/2401070/fixed-number-of-rows-in-access-report

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