Separating Information by pages

R

Rush

I've got a report sorted by variable x. for each new value of x, i want the
information to display on a new page. for example, if the records where x=1
are on pages 1 - 5, I want the records where x=2 to start on page 6. Can
anyone help? Thanks!
 
M

Marshall Barton

Rush said:
I've got a report sorted by variable x. for each new value of x, i want the
information to display on a new page. for example, if the records where x=1
are on pages 1 - 5, I want the records where x=2 to start on page 6.


Use the report's Sorting and Grouping window (View menu) to
specify a group with header. Then set the group header
section's ForceNewPage property to Before Section.
 
Top