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
This solved my problem Create new formula field
{IM_INV.QTY_ON_HND}-{IM_INV.QTY_ON_HND}+1
{Existing field} minus {exiting field} plus 1
This gave me a "1" next to each detail line in a field I called {NumberForCount}
Because it was made this way it showed up in running total field options
Then made a running total field like normal in the footer
Try the solution
Create a formula
@reset
. Place the formula ingroupheader
andsupress
Now create one more formula
@ Increment
and place in section where there arerows
I have assumed it as detail section andsupress
.Now create one more formula
@Display
. Place this formula inGroup footer
Now create one more formula
@DisplayFinal
and place inReport Footer
Another way to try by using Summary
Right Click > Insert > Summary
Choose Field (I choose string value)
Choose "Count" to Calculate This Summary Combo box
Choose Summary Location in Where would you like to show this total
Then OK
This solution may help someone,
Create a Running Total:
Refer the image below