Help creating report that filters dates

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

Guest

I am using Access 2000 to create a database that collects data by date. I
want to create a form that will let the user input a beginning date and an
ending date, then open a report that will contain all the data between these
2 dates. Can anyone give me an idea on how to do this?
 
In your query, under the date just enter the criteria like...

Between Forms![YourFormName]![YourFromDateFieldName] and
Forms![YourFormName]![YourEndDateFieldName]
 
Back
Top