List Actuals w/in Date Range, and the Planned for the next month

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

Guest

I need a report that will list Actuals (date range) and Planned (next month).

For example, List the Count of People Hired from Oct 2004 through 31 Aug
2005 for each department, and the Count of Planned Hired for September 2005.
 
I need a report that will list Actuals (date range) and Planned (next month).

For example, List the Count of People Hired from Oct 2004 through 31 Aug
2005 for each department, and the Count of Planned Hired for September 2005.

How are these values stored in your tables?

A Report with two subreports based on queries with date criteria such
as
= DateSerial([Enter year:], [Enter month:], 1) AND < DateSerial([Enter year:], [Enter month:] + 1, 1)

for the current month, and
= DateSerial([Enter year:], [Enter month:] + 1, 1) AND < DateSerial([Enter year:], [Enter month:] + 2, 1)

for next month might be a start...

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

Back
Top