Can you calculate average weekly sales in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

On a weekly basis, I need to calculate average weekly sales over the past 13
weeks. Is it possible to do this type of calculation in Access 2003? If so,
how?

Thanks!
 
Yes, but how you do it depends what your data looks like. If it looks like
this:

Sales Date, Sales Amount
7/1/2005, $1.23
7/3/2005, $45.67
7/3/2005, $89.10
7/8/2005, $11.12

Then you might try a query whose SQL looks something like this:

SELECT
Sum([Sales Amount])/13 As [Average Weekly Sales]
FROM
[Your Table]
WHERE
[Sales Date] >= DateAdd("ww", -13, Date())
 

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

Back
Top