I need to print paycondition on every 'Even' page of the report.The idea is that I always have an even amount of pages on the report.
The report structure :
Page header
GroupHeaderSection (for table header)
DetailSection - details
GroupFooterSection (for details total)
PageFooter

I try to put paycondition in page header, page footer or in another group header with repeat on every page, because I need to have this info in a repeatable section.

1) First scenario (another group header)
GroupHeaderSection1 ( with payment condition) - suppress if (pagenumber mod 2 = 1) and New Page After (for the moment without any condition)
GroupHeaderSection2 - suppress if (pagenumber mod 2 = 0)
DetailSection - suppress if (pagenumber mod 2 = 0)
Everything works OK on first 2 pages, but the problem is even we have New Page after(groupHeaderSection1) and Keep Group Together = false, the details not continue on odd pages(page 3 doesn't exist).

2) I have the same problem also if I put the payment condition on page heaher or page footer the details not continue on odd page if I have more than one page.
But I will prefer to use the first scenario because I have the possibility to add a condition for New Page After option.

Does anybody have any other idea to solve my problem?
Thanks in advance.