count groups, not records in a group

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report with several grouping fields.
I want to know how to count the number of subgroups in a group (rather than
the number of records in a subgroup).

Thank you!
 
Greenfield said:
I have a report with several grouping fields.
I want to know how to count the number of subgroups in a group (rather than
the number of records in a subgroup).


Add a text box to the inner group's footer section. Set its
expression to =1 and RunningSum property to Over Group.

The next higher group level's footer can then display the
count of inner groups by just referring to the running sum
text box.
 
Back
Top