group subtotals

  • Thread starter Thread starter access2003
  • Start date Start date
A

access2003

I am working on a simple report based on a query that
groups and subtotals a club membership list by member
type (Life, Regular, Associate, ....). It works well
except the total for the last group is always the total
of all records. I have tried using count(field), count
(*) and even created a dummy field =1 and then used sum
(dummyfield) and it all gives the same results.
 
After further examination it seems the group totals are a
running total rather than a subtotal of each group.

I have not looked at the problem in that light but if
anyone has an idea I'd be happy to hear it as I won't get
back to this for a bit.
 
After further examination it seems the group totals are a
running total rather than a subtotal of each group.

I have not looked at the problem in that light but if
anyone has an idea I'd be happy to hear it as I won't get
back to this for a bit.


The total text box in the group footer probably has its
RunningSum property to Over All or Over Group.
 
Yes, the RunningSum was set to OverGroup. Setting it to
No fixed the problem. I'll have to read up on that
setting.

Thank you very much for your help. You saved me a lot of
time.

Tom
 
Back
Top