Print horizontal array on next page report

Hi i have a question.

I have create two bodies section.

section 1

array[1]…array[15]

section 2

array[16]…array[30]

it will display as

array[1]…array[15]

array[16]…array[30]

However, i want it to be display like this

page 1 page 2

array[1]…array[15] array[16]…array[30]

How do i move the 2nd section to the next page?

Please help!

Can you give a little more information, what version on NAV, classic report or RTC?

it is a classic report, nav 2009 R2

NAV version 2009 R2, classic report

I think there are a couple of options here since we are talking about classis, first I think we need to verify that the report can generate multiple pages by using the Integer as the dataitem, group by number and set the property to create a new page per group.

  1. If this is simply a two page report you can create two body sections and use the pre section of each to determine what page number it is and hide the section that should not display for this report.
  2. If this is a multipage report (more than just the two) where this array will print multiple times then we can use a variable to track which half of the array to print.

If neither of these solutions meet your needs then please provide a little more detail on the report itself, the data being presented, the sorting or grouping on particular tables, etc.