Hi Abhilash,
I will add page footer as you suggested.
Before that please suggest how I can display sum of data based on group in page footer.I am trying by taking sub report as main report.
I created a formula like this and kept in details section.
WhilePrintingRecords;
numbervar x ;
numbervar y;
x := x + {Details.NO_OF_TRANS};
y :=y +x;
x;
And another formula kept in group footer.
WhilePrintingRecords;
numbervar y;
And lastly reset and kept in group header
WhilePrintingRecords;
numbervar y;
y :=0;
But I am not getting the result even in group footer .
Is there any wrong I am doing
Please suggest the steps