I have created multiple Reports and need to create a final report which will contain the data from these multiple reports.
The following is my situation:
Report A:
Column Column1 Column2 Column3 Column4 Calucation
Row-A a1 a2 a3 a4 CalA.A
Row-B b1 b2 b3 b4 CalB.A
Row-C c1 c2 c3 c4 CalC.A
Report B:
Column Column1 Column2 Column3 Column4 Calucation
Row-A a1 a2 a3 a4 CalA.B
Row-B b1 b2 b3 b4 CalB.B
Row-C c1 c2 c3 c4 CalC.B
Report Aggregated
Column Column1 Column2 Total
Row-A CalA.A CalA.B Total.A
Row-B CalB.A CalB.B Total.B
Row-C CalC.A CalC.B Total.C
Here as seen Report A and Report B is calculated from a postgres DB.
The Aggregated Report needs to fetch the data calulated in Report A and Report B.
Please help me find a way where I can pass the data from these Multiple reports into the final report.
Thanks in Advance.