Hi,
Would anyone know how to have this code execute only ONCE? As it is, it auto-enters a date-stamp EVERY time a cell in column B is double-clicked. I just need it to do this ONLY on the INITIAL cell edit.
Thanx!
Frith
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim TimeStr As String
If Target.Column = 1 Then
Target.Offset(, 1) = Now
End If
If Target.Column = 1 Then
Target.Offset(, 3) = Now
End If
Would anyone know how to have this code execute only ONCE? As it is, it auto-enters a date-stamp EVERY time a cell in column B is double-clicked. I just need it to do this ONLY on the INITIAL cell edit.
Thanx!
Frith
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim TimeStr As String
If Target.Column = 1 Then
Target.Offset(, 1) = Now
End If
If Target.Column = 1 Then
Target.Offset(, 3) = Now
End If