Now I have got a report with two groups. In the outer group I want to count how many subgroups I get for each outer group value. A simple counting does not work, because it counts all the rows in the detail sections together. Does someone has an idea how to get it? That looked like fun...so I have been giving it a shot.
I started with the general idea of doing something like this ( pseudo ) SubGroupCount = 0 tmpVar = NULL for each record if tmpVar <> [TOP_GROUP_COLUMN] THEN tmpvar = [TOP_GROUP_COLUMN] INC( SubGroupCount )
