YTD

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

Guest

I Have a table that lists total incoming calls for a week for each agent. I
would like build a report/query that gets year to date information as a
running total. Any suggestions?
 
When I do a crosstab query it causes problems with the date field because I
query this information for the report.
 
I Have a table that lists total incoming calls for a week for each agent. I
would like build a report/query that gets year to date information as a
running total. Any suggestions?

Use a criterion on your date/time field of

BETWEEN DateSerial(Year(Date()), 1, 1) AND Date()

and make it a Totals query summing whatever it is that you want to
sum.

John W. Vinson[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

Similar Threads


Back
Top