Thanks for the quick response.
I am new to Access, is there anyway you can go into more detail on how to
create the query and how I can get my report to access it. All I want to be
able to do is get the total number quote quotes submitted for the month of
January.
That's not what you asked for above. You asked for January, February,
etc. Which do you want?
Assuming the broader (each month) option, create a new Query based on
your Table. Add JUST the primary key field of the table (for
counting). In a vacant Field cell type
SortDate: Format([yourdatefield], "yyyymm")
This text string will contain 200601, 200602, etc.
Click the Greek Sigma icon (looks like a sideways M). A new Total line
will appear. Change the default Group By under the primary key field
to Count.
If you want to filter the records to (say) the current year, add the
date field; change the totals row entry to Where; and put
= DateSerial(Year(Date()), 1, 1)
on the criteria line.
Save this query and use it as the Recordsource for your report -
create a new report using the wizard, and select the query as the
source of your data.
John W. Vinson[MVP]