Mikeymike_W
Board Regular
- Joined
- Feb 25, 2016
- Messages
- 171
Hi all,
I have the following bit of code that supplies a time stamp in column Z when the cell in column G is populated:
If Target.Column = 7 Then
Application.EnableEvents = False
Cells(Target.Row, 26).Value = Date + Time
Application.EnableEvents = True
End If
I wanted to bypass this code if there is already a value in column Z so if the user alters the value in column G then a new date is not entered in column Z and it stays the same.
Thanks in advance,
Mike
I have the following bit of code that supplies a time stamp in column Z when the cell in column G is populated:
If Target.Column = 7 Then
Application.EnableEvents = False
Cells(Target.Row, 26).Value = Date + Time
Application.EnableEvents = True
End If
I wanted to bypass this code if there is already a value in column Z so if the user alters the value in column G then a new date is not entered in column Z and it stays the same.
Thanks in advance,
Mike