I am trying to create a check writing report that will work in the following way:
Each page of the report will include 10 line items AT MAX. For example, if we are writing a check that will account for 12 items, the report will have two pages:
My idea is to have a DataSet with two tables, one for the line items and the other one for the check data. And in the check table, have one row per page. So in the previous example, I would have 12 rows in the line items table, and 2 rows in the checks table (one would have 0.00 as the amount, and the other one would have the actual X.XX amount). I was also thinking about grouping by check, and add a page break after each check, but I am not sure on how to make sure that only 10 line items are in each page.
Any help, or new ideas on how to approach this matter?
Thanks!
To make it show 10 records per page do the following
Open the report in Design View
Right click on the Details section and select Section Expert
Make sure the Details section is selected in the Section Expert dialog box. Check the box that says "New Page After"
Click the formula editor button to the right of the checkbox.
Enter the following formula
if Remainder (RecordNumber, 10) = 0 then true else false
6.Click Save and Close and then click OK.