TraciAnn,
For the code to work, the change must be made to a single cell. If your workflow is such that you
might be making changes to multiple cells, then use the second version, below the first.
'This version doesn't overwrite the original date, but only records when a single cell changes:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Cells(Target.Row, "L").Value <> "" Then Exit Sub
If Intersect(Target, Range("C:K")) Is Nothing Then Exit Sub
Application.EnableEvents = False
With Cells(Target.Row, "L")
.Value = Now
.NumberFormat = "mm/dd/yy hh:mm:ss"
End With
Application.EnableEvents = True
End Sub
'This version doesn't overwrite the original date, and works on multiple cells:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim myC As Range
Application.EnableEvents = False
For Each myC In Target
If Cells(myC.Row, "L").Value <> "" Then GoTo DoNext
If Intersect(myC, Range("C:K")) Is Nothing Then GoTo DoNext
With Cells(myC.Row, "L")
.Value = Now
.NumberFormat = "mm/dd/yy hh:mm:ss"
End With
DoNext:
Next myC
Application.EnableEvents = True
End Sub
HTH,
Bernie
MS Excel MVP