Open form with specific criteria

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

I want to open a form with a command button were the date records in the form
corresponds to todays date...
 
I want to open a form with a command button were the date records in the form
corresponds to todays date...

One way is to base the form on a Query with a criterion on the date field of

=Date()

If the date field contains date and time, use
= Date() AND < Date() + 1

to get all the times during the day.
 
Back
Top