I have a rdlc report with some static information at the begining, and after this information there is a subreport that will render N child subreports depending on the datasource, I need the data of each subreport to be rendered in a separate page. The structure is like this pseudo code:
<Report>
<Tablix>....</Tablix>
<SubReport>
subreports.rdlc
</SubReport>
</Report>
subreport.rdlc
<Report>
<Tablix>
<TablixRow>some information</TablixRow>
<TablixRow details>
<SubReport>othersubreport.rdlc</SubReport>
<PageBreak>
<BreakLocation>End</BreakLocation>
</PageBreak>
</TablixRow>
</Tablix>
</Report>
I placed a page break at the end of each subreport in the details row group of the table, but it seems to be a problem with page break inside subreports. Is this a known issue? Is there any workaround to solve this?