Rose said:
'I have managed to 'group' a field and 'count' the grouped fields,(in a
query) now I want Access to give me the TOTAL count of the fields in a
report. How do I do that?
Depends on what kind of total you're looking for.
You can use an aggregate expression in a text box control in
the Report and/or group header/footer sections. E.g.
To calculate the total number of records in the
report/group:
=Count(*)
To calculate the number of records with a non-Null value in
field1:
=Count(field1)
To calculate the sum of the non-Null values in field1:
=Sum(field1)
Unless you're creating a summary report, it is unusual for
the report's record source to be a Group By (Totals) query.
More common is to use the report's Sorting and Grouping
feature (View menu) to group records by a specified field.
You can then calculate group totals in the group
header/footer section and totals for the entire report using
the same functions the same way.