Open form with specific criteria

P

Peter

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

John W. Vinson

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.
 
Top