Adding sums to a report?

Z

ZBC

I created a report of about 8 columns, based on a query, by using the
report wizard.
I then made some changes to the layout of the report my moving and
resizing most of the heading, etc.
I now have decided that I would like to have some of the columns totaled
at the bottom.
I realize that if I start all over again and used a wizard, etc. that
it will probably do the summing for me?
I would just like to understand more about customizing my reports, so I
am asking "How do I add sums without starting all over?"
.... or should I depend on a query to do it?
Bob
 
S

Steve Schapel

Bob,

In design view of the report, put an unbound textbox in the Report
Footer section for each field you want to total. Then, in the Control
Source property of the textbox, put the equivalent of...
=Sum([NameOfYourField])

- Steve Schapel, Microsoft Access MVP
 
F

fredg

ZBC said:
I created a report of about 8 columns, based on a query, by using the
report wizard.
I then made some changes to the layout of the report my moving and
resizing most of the heading, etc.
I now have decided that I would like to have some of the columns totaled
at the bottom.
I realize that if I start all over again and used a wizard, etc. that
it will probably do the summing for me?
I would just like to understand more about customizing my reports, so I
am asking "How do I add sums without starting all over?"
.... or should I depend on a query to do it?
Bob
Bob,
Sum at the bottom of what?
The Report footer?
Just add an unbound control. Set it's cpntrol source to:
=Sum([SomeField])

The Page Footer?
See Microsoft KnowledgeBase Article:
132017 'How to sum a column of numbers in a report by page'
 

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

Top