Can we have 2 reports in one report? i mean we have 2 reports in 2 identical section bodies one below the other each having their header,body,footer while design?
Well, you can,… sort of if you’re using a classic report (I’m not sure about RDLC)
What you could do:
Create a report, with two ‘integer’ table dataitems. With “Count=CONST(1)” as view. Give them a unique name (ie: Layout1, Layout2)
OnPreDataItem of the second dataitem (Layout2), you can put the code “CurrReport.NEWPAGE;”
Design both Layout dataitems with it’s own header, body and footer sections.
All other dataitems can be nested into the two ‘Layout’ dataitems.