Entry Date

  • Thread starter Thread starter Abe Katz
  • Start date Start date
A

Abe Katz

Hello,
Is there a way to see the date the transaction was entered in a table?
Thanks in advance
 
On a Form? With a date field added to the table, add the field to the form
and set the default value to Date() and if you want, make it invisible. to
catch updates on existing records, add

Private Sub Form_BeforeUpdate(Cancel As Integer)
Me.dateentered.Value = Date
End Sub

Damon
 
Back
Top