My report consist of groups of employees. Each employee's section can have 3-5 pages. I want to add an empty page after a group if the page number is odd. The reason is when printing 2 pages on one sheet and a group has 3 pages then the first page of next group is printed on the same sheet.
I added empty TablixRow at the end of the TablixBody and added a group to it with a PageBreak set. Next step is to control its visibility based on page number.
<TablixMember>
<Group Name="EmptyGroup">
<PageBreak>
<BreakLocation>Start</BreakLocation>
</PageBreak>
</Group>
<Visibility>
<Hidden>=IIf(Globals.PageNumber Mod 2) = 0, True, False)</Hidden>
</Visibility>
</TablixMember>
However I don't have access to globals in report body (only in footer). Is there any workaround?