Total months

C

chrissy2391

I'm trying to create a report that groups by school and then totals up the
actual cost field per school for each month. What's throwing me off is the
fact that the completed dates are entered in the format 10/10/05. How can I
get a total for each month, a YTD total for each school, and then a report
total of all school. I appreciate any help on this.
 
J

Jeff Boyce

You could create a Totals query, grouping by the month. To get the month,
you could use the Month() function, something like:

MyMonth: Month([MyDateField])

in an underlying query.

To find a YTD range of dates, you could use the DateSerial() function, along
with today's date (via the Date() function).

Regards

Jeff Boyce
<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