automatic field

D

david d

I want to add "today's date" into a field everytime a new record is created.
I have tried several things, with no success. Anythoughs?
 
M

missinglinq via AccessMonster.com

Private Sub Form_Current()
If Me.NewRecord Then
YourDateFieldName = Date
End If
End Sub
 
Top