B
BillyBob
How can I date stamp a cell entry that will not up-date until the entry is
changed?
changed?
Don Guillett said:Right click sheet tab>view code>insert this>save workbook
now when you change anything in cells d2: d22 the date will be put in col F
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("d2:d22")) Is Nothing Then
Target.Offset(0, 2) = Date
End If
End Sub