I'm building an SSRS report (2016) with 2 columns:
---------------------------------------------
| ID | Service Number | ID | Service Number |
| 1 | A | 11 | K |
| 2 | B | 12 | L |
| 3 | C | 13 | M |
| 4 | D | 14 | N |
| 5 | E | 15 | O |
| 6 | F | 16 | P |
| 7 | G | 17 | Q |
| 8 | H | 18 | R |
| 9 | I | 19 | S |
| 10 | J | 20 | T |
---------------------------------------------
Requirements:
- The data should first completely occupy the left list and then start with the right. This should be per page. So, for ex: If my total records are 100 and a page can handle 40 records (20 on left and 20 on right), we need to display 1 to 40 records on the first page. 40 to 80 on second one and so on.
- Each page should have a header on left and right columns.
Notes: I already tried a solution given here: SSRS - How to continue data to next column? The problem here is, if I've just 10 records, it splits 5 on left and 5 on the right, which doesn't match my requirement.