If you are going to run a report for each month, I would not break them into
separate queries/reports, I would simply use my sorting and grouping option
on my report to break the page when the month changes. I'd include a "page
header" that was actually my report header.
This is if you want to print all the records but, break them by month.
If you want to run it for a specifc month, then add a new column to your
query to pull the month out of your date...
MonthSold: Datepart("mm",[SomeDateField]
Then in the criteria under that column, put a prompt to allow the user to
make an entry...
=[EnterMonth ##]
Hope that helps.
Rick B
Melissa needing help!! said:
I'm sorry I didn't explain myself very well, I'm new to this. Anyways, I
have a date field, with the mm,dd,yyyy, I want to do a report using each
month separately, but first I must do a query using each month individually.
What would I put into my critical? Thanks so much.