Private Sub Worksheet_Change(ByVal Target As Range)
' Automatically place date/time stamp in cells A12:A100 when a cell in C12:C100 is manually updated
If Not Intersect(Target, Range("C12:C100")) Is Nothing Then
Target.Offset(0, -2) = Now
End If
End Sub