Calculating Weekly Totals

  • Thread starter Thread starter Van
  • Start date Start date
V

Van

I have a data base in Access XP that tracks total number of visits each
Friday for 6 or 7 years.

I want to count the number of visits for each year. My query has the
following fields:

Year Date (Friday) Department Site Visits

Any suggestions?

Thanks in advance
Van Reed
 
Perhaps something like this:

SELECT Year, Department, Sum(Visits)
FROM TableName
GROUP BY Year, Department;
 

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


Back
Top