Click to See Complete Forum and Search --> : I need to display 15 records only per page


dreamer_0244
November 19th, 2007, 02:41 AM
Hi! I am currently working on a report where I need to display 15 records only per page...

Any advice on this? Thanks in advance!

Lugh
November 19th, 2007, 12:36 PM
The simplest solution is to size all of your sections so that only 15 records will fit.

A trickier solution is to create a running total on your report, essentially to give you line numbers. Open the Section Expert and go to Details. In the "New Page After", put a condition to go to a new page if your running total mod 15 is 0 (i.e., your running total is an even multiple of 15).

Note that both methods have issues if the records are of different sizes (e.g., you have a notes field with "Can Grow" enabled).

dreamer_0244
November 20th, 2007, 12:10 AM
thank you very much for the advice!