I have two reports both have different format, and now I need to merge them so I can have 2 pages instead of two reports, I'm using visual studio 2012, Thanks
Asked
Active
Viewed 9,268 times
2
-
you basically need to execute both reports one by one. – aMazing May 17 '16 at 01:04
1 Answers
0
There are some approaches to achieve this. I explain one by one.
Approach 1 : Use sub-report :- If you have a common parameter between both the report, then best approach this is use one report as a sub-report and second will treat as a main report. For this in main report, Insert -> Sub-report
, map the both report and execute will give the desire result.
Check this (or search sub-report in google) : combine 2 crystal reports to 1 crystal reports
http://vb.net-informations.com/crystal-report/vb.net_crystal_report_subreport.htm
Approach 2 : this approach is simple, in the c# code generate both report then export into one pdf report. Check this link
-
Thanks a lot, I did it creating a new report and adding 2 subreports and works perfect – Carlos Anez May 17 '16 at 12:32