If you want just 1 record per page, group on some identifying info about the record. For the group footer section turn on New Page After and in the formula button for NewPageAfter put "NoOnLastRecord".
If you want another number of records on a page, create the group as indicated above. Also create a running count of records (I'll call it {#recCount}. In the New Page After (don't put a check in the checkbox!) formula for the group footer, put something like the following:
{#recCount} mod 5 = 0 and NotOnLastRecord
This will do a page break for every 5 records - you can change the number as needed.
-Dell