group within group reporting

  • Thread starter Thread starter cyberchoc
  • Start date Start date
C

cyberchoc

I have a report in which I group event occurences (grouped by time) within
 
You need a group footer and a report footer. In the group footer, use an
expression in the controlsource something like:

= Count([data])

with [data] being the name of a textbox in the group. Do the same in the
Report footer:

= Count([data])

or you can Sum the group footer Count controlname in the report footer.
 
Thank you so much! I will try it as soon as possible. Thanks again!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top