It is possible to format your report to show the field names in 1 column and the results in another. If you use the wizard, select columnar layout and it will do it for you or go into design view and drag and drop the fields and their labels in the appropriate place.
To display totals create a query that will sum your values like:
select sum(field1),sum(field2),sum(field3) from table
and use that as datasource for your report.
PS: PIVOT won't work in access. Besides it's a bit overkill if you just want to sum() all values.
adam_k
Practically a Posting Shark
803 posts since Jun 2011
Reputation Points: 256
Solved Threads: 149