Hi all,
I have new question

I have report with group defined on rowcount with specified interval X so the result looks like:
[group header]
total items in current group <=X
[/group header]
[item 1 with details]
...
[item N with details]
[group footer]
[/group footer]
...
[group header]
total items in current group <=X
[/group header]
[item N+1 with details]
...
[item M with details]
[group footer]
[/group footer]
The problem is that I need summary listing on items in each group footer so the result should look like this:
[group header]
total items in current group <=X
[/group header]
[item 1 with details]
...
[item N with details]
[group footer]
item 1, item 2,... item N
[/group footer]
...
[group header]
total items in current group <=X
[/group header]
[item N+1 with details]
...
[item M with details]
[group footer]
item N+1,... item M
[/group footer]
Now I'm using parameter to store this listing, but it is not very nice and difficult to read, some another way that can provide tabular output would be much more handy.
Thanks for suggestions
Tonda