I'm sorry this question has gone unanswered for a year.
The best way to create queries if you don't have a working knowledge of the SQL syntax is by using the QBE.
- Open the query designer and select 1 or more tables and/or queries to include in the query you are building.
- Close the select dialog.
- If you have selected multiple tables/queries draw the appropriate join lines to connect each data source.
- Select the columns you want from each data source.
- To make a totals query, press the big sigma button. This adds a totals line and "Group By" as the action for each column. Change the total cell to Sum or Avg or whatever other aggregation you want.
Selection criteria is most useful when it is not hard-coded so in this case, I would add two controls and a button to a form. The controls would be used to hold the start and end dates and the button would be used to run the report.
Back to the query.
In the Criteria cell for the SaleDate enter an expression like:
Between Forms!yourform!FromDT AND Forms!yourform!ThruDT
Newer versions of Access have intellisense and will help you with the reference to the form fields. Final step is to uncheck the show box for the SaleDate since that will interfere with the aggregation.