Total numbers by month

  • Thread starter Total fields by month
  • Start date
T

Total fields by month

I have a database that holds a intial contact date as well as several check
boxes confirming reciept of information. I would like to have a query/report
that shows per a 3 month period (asked for through criteria) the totals for
each Field by the month it was in.

Thanks for any help.
 
K

KARL DEWEY

Try this --
SELECT Format([ContactDate], "yyyy mmm") AS Contact_Month,
Sum(Abs([CheckBox1])) AS Receipt_1, Sum(Abs([CheckBox2])) AS Receipt_2,
etc...
FROM YourTable
WHERE your criteria ...
GROUP BY Format([ContactDate], "yyyy mmm")
ORDER BY Format([ContactDate], "yyyymm");
 
J

Jeff Boyce

"each Field by the month it was in" ... this could be interpreted more than
one way.

Please post the table/data structure you're trying to create the query
against.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

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