Date

H

HayabusaMan

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
 
M

MarsGuy

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