How to Insert Page break after fixed row in SAP Business one Crystal Report

To make it show 14 records per page do the following

1. Open the report in Design View

2. Right click on the Details section and select Section Expert

3. Make sure the Details section is selected in the Section Expert dialog box.
4. Check the box that says “New Page After”

5. Click the formula editor button to the right of the checkbox.

6. Enter the following formula
7. if Remainder (RecordNumber, 14) = 0 then true else false

8. Click Save and Close and then click OK.

If you run the report it should break after each 14 rows.