Sub Totals and Totals in a report

G

Guest

I have a field called Attendee, a field called event, and a payment amount
field for each event. I need a report that subtotals the payment amount by
the event and then totals the entire report.
Please help.
 
M

Marshall Barton

adding said:
I have a field called Attendee, a field called event, and a payment amount
field for each event. I need a report that subtotals the payment amount by
the event and then totals the entire report.


Use Sorting and Grouping (VB editor View menu) to greate a
group with footer section. Add a text box to the group
footer and use the expression:
=Sum([Payment Amount])
do the same in the Report footer section.

If you prefer you can use the header sections instead of
footers.
 

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

Similar Threads


Top