I need to count and show number of rows of grouped data in the report. I already have number of rows of total data in Report Footer section (I used Count() function and that works fine), but I need to have total rows in the Group Footer section which shows number of rows of grouped data. The visible explanation of the problem is shown under.
Thanks.
----------------------------------------------------
Group 1
row 1---------------------------
row 2---------------------------
.
.
.
row N---------------------------
--- I need here number of rows!---------------------
----------------------------------------------------
Group 2
row 1---------------------------
row 2---------------------------
.
.
.
row M---------------------------
--- I need here number of rows!---------------------
----------------------------------------------------
Total Rows: M+N
Try the solution
Create a formula @reset
. Place the formula in groupheader
and supress
Shared Numbervar count;
count:=0
Now create one more formula @ Increment
and place in section where there are rows
I have assumed it as detail section and supress
.
Shared Numbervar count;
count:=count+1;
count;
Now create one more formula @Display
. Place this formula in Group footer
Shared Numbervar count; Shared Numbervar Count_Final; Count_Final:=Count_Final+count; count;
Now create one more formula @DisplayFinal
and place in Report Footer
Shared Numbervar Count_Final; Count_Final
This solution may help someone,
Create a Running Total:
Refer the image below
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With