Hello,
I've used this code before in a worksheet; it used to work fine, and now it's not working:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Target.Offset(0,1) = Now
End If
End Sub
It used to put a date/time stamp in column B whenever I altered column A, but now -- nothing. I'm not sure if I screwed up my Excel settings, or if I'm truly not seeing my error...
Any help is appreciated!
I've used this code before in a worksheet; it used to work fine, and now it's not working:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Target.Offset(0,1) = Now
End If
End Sub
It used to put a date/time stamp in column B whenever I altered column A, but now -- nothing. I'm not sure if I screwed up my Excel settings, or if I'm truly not seeing my error...
Any help is appreciated!