Sub Total in Access Report

G

Guest

I am trying to set up sub totals in a report. I may need to change a name of
a report footer, or insert new report footer.

example
1 item 1/1/2005 $400.00
1 item 1/30/2005 $600.00
1 item 6/1/2005 $100.00

So I would want to show a total for items (3) and Cost $900.00

then same for next year

2 item
 
M

Marshall Barton

shannah said:
I am trying to set up sub totals in a report. I may need to change a name of
a report footer, or insert new report footer.

example
1 item 1/1/2005 $400.00
1 item 1/30/2005 $600.00
1 item 6/1/2005 $100.00

So I would want to show a total for items (3) and Cost $900.00

then same for next year

2 item


Subtotals can easily be calculated in a group footer section
text box using an expression like =Sum([amount])

In this case, I think you want to group on an expression
like =Year([the date field])

The Sorting and Grouping window can be accessed through the
View menu when the report is open in design view.
 

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