Mikeymike_W
Board Regular
- Joined
- Feb 25, 2016
- Messages
- 171
Hi Everyone,
I have the following code to populate a timestamp in column 38 when the value of a cell in column 13 is changed:
If Target.Column = 13 Then
Application.EnableEvents = False
Cells(Target.Row, 38).Value = Date + Time
Application.EnableEvents = True
End If
I was wondering if it is possible to create a condition where this is ignored?
So if the cell in column 13 is populated with the text "TBC" then the time stamp wont be generated?
Many thanks for your help,
Mike
I have the following code to populate a timestamp in column 38 when the value of a cell in column 13 is changed:
If Target.Column = 13 Then
Application.EnableEvents = False
Cells(Target.Row, 38).Value = Date + Time
Application.EnableEvents = True
End If
I was wondering if it is possible to create a condition where this is ignored?
So if the cell in column 13 is populated with the text "TBC" then the time stamp wont be generated?
Many thanks for your help,
Mike
Last edited: