Date parameter

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

Guest

Well, I know this question has been answered many times...but, well I'm new
at access and all the answers were based on SQL which I'm not familiar with.

Baiscally I need to run a query to check for records after a certain record.
The date is taken from a simple date field in a table.
 
Sorry I don't want to check for records after a certain record. I want to
search for them after a certain date. The date, Again, sorry, Isn't taken
from a date field. But a date would (hopefuly) be entered into the query. Any
records after that date would appear.
 
Create a form. dlgReportCriteria.
Add a text box. txtDate

In the query criteria put:

WHERE Yourdatefield >= Forms!dlgReportCriteria!dlgReportCriteria
 
Back
Top