I am having an issue with a report I am working on. I am trying to set this report up so that when printed the duplex option is chosen and data is printed on the front and back properly. I already actually have this working when there are exact sets of 5 records being printed.
I have a 3 column by 2 row tablix. In cell A1 of that tablix I have another tablix which contains all the data that will print on the front side of the paper. In cell C3 of the outer tablix, I have an internal tablix that contains all of the data for the back side. Cells B2, B3, A1, and A2 are empty. Column B was created with the correct width to properly format for front and back so that the data would line up correctly.
My row group has an expression as such: =Ceiling(RowNumber(nothing)/5) which allows for the report to perfectly output the front data for the first 5 records on page 1, output the back data for the first 5 records on page 2, etc. as long as the number of records is a multiple of 5.
My problem is that when having odd numbers that are not multiples of 5 I can't get it to page break correctly. For instance, if there are 4 records remaining after the first group of 5, then the front side data prints for the first 4 records and then immediately on the same page without a page break it prints the back side data.
What can I do to get it to page break after those first 4 records and then output the back side data. Of course, this would need to work dynamically so that no matter if there were 4, 3, 2, or 1 records remaining it will page break after the first grouping.
I would greatly appreciate any assistance that can be provided. Thanks in advance!