I have Access 2016.
I would like to record the date a record is modified. The code should replace the former date if the record is subsequently modified.
This is what I have tried... which does not work. ModDate is the name of the field that the modification date should be recorded.
Thank you.
rccline
I would like to record the date a record is modified. The code should replace the former date if the record is subsequently modified.
This is what I have tried... which does not work. ModDate is the name of the field that the modification date should be recorded.
Code:
Private Sub Form_Dirty(Cancel As Integer)
Me!ModDate.Value = Date
End Sub
Thank you.
rccline