Sales Summary

T

tsison7

I have a table with sales figures dated from 2005 to current. I'd like a
report to show the following:

Sales for each year 2005, 06, 07
Total of sales to date
Total of sales last month
Total of sales last 3 months

I can do the first 2 no problem but I would I incorporate sales over the
last n months?
 
D

Duane Hookom

Sales over the last three months could be calculated in a header or footer
with an expression like:
=Sum(Abs([SalesDate]>=DateAdd("m",-3,Date())) * [SalesAmount])
 

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