I needs is this viewer code to work in a sheet this is protected. I have certain columns that are protected and other columns user can modify. column C is unprotected and column A is unprotected.
Private Sub Worksheet_Change(ByVal Target As Range)
' Automatically place date/time stamp in cells A12:A120 when a cell in C12:C120 is manually updated
If Not Intersect(Target, Range("C12:C120")) Is Nothing Then
Target.Offset(0, -2) = Now
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
' Automatically place date/time stamp in cells A12:A120 when a cell in C12:C120 is manually updated
If Not Intersect(Target, Range("C12:C120")) Is Nothing Then
Target.Offset(0, -2) = Now
End If
End Sub