Have a worksheet on Sheet 1 (10 columns and 20 rows) and a exact copy on Sheet 2
On Sheet 1, I enter data and would like the worksheet on Sheet 2 to record the date that a entry is made and/or updated on Sheet 1.
Is this possible?
If so, can anyone provide a starting point?
Currently experimenting with the following;
thanks in advance.
On Sheet 1, I enter data and would like the worksheet on Sheet 2 to record the date that a entry is made and/or updated on Sheet 1.
Is this possible?
If so, can anyone provide a starting point?
Currently experimenting with the following;
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Columns("A:A")) Is Nothing Then
Target.Offset(0, 1).Value = Format(Now, "mm dd yyyy h:mm:ss")
End If
End Sub
thanks in advance.