Date

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

Guest

I have two fields start date and end date
How do I get the start date to display todays date
and the end date to display tommorrows date
I am using a form
 
Hi,

In the form's design view, go to the "On Load" Event. Put
code like:

Me![Start Date]=Now()
Me![End Date]=Now()+1

That should do it.

Hope this helps.
 
Back
Top