Todays Date Issue

  • Thread starter Thread starter mattc66 via AccessMonster.com
  • Start date Start date
M

mattc66 via AccessMonster.com

Hi All,

I have some code in Access and I want a field updates with todays date.

I have tried the below and the ShipDate field is blank. Why?
Me.ShipDate = Now()
 
Matt,
Also, Now returns the current date and time. Try
Me.ShipDate = Now()
to return just the date.

But, your code should have displayed the date and time.

Is ShipDate a bound Date&Time field.
Where exactly did you put this code, and what event triggers the code?
--
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."
 
Back
Top