Calculating totals/subtotals

  • Thread starter Thread starter LiseD
  • Start date Start date
L

LiseD

I have a query from a table/query of Donors that is sorted/grouped by gender
then by blood group within that gender (this is a medical database for
statistics).

I would like to have it calculate the total number of donors of particular
blood group wtihin that gender to appear in the report as a subtotal.

How do I do this in the query as I am assuming this cannot be done in the
report?

Thank you.
 
This is most easily done within the report. Display the group footer for
blood group and add a text box with a control source of:
=Count(*)
 
Back
Top