Re: Auto Date and Time?
Private Sub Worksheet_Change(ByVal Target As Range)
' Automatically adds date and time
If Target.Column = 5 Then
Target.Offset(0, 5).Value = Date
End If
End Sub
sorry to drag this one back up. The above works great. how can i modify the code so that it only fills in the date when certain text ("COMPLETED") is entered into the specified column? much appreciated.
Private Sub Worksheet_Change(ByVal Target As Range)
' Automatically adds date and time
If Target.Column = 5 Then
Target.Offset(0, 5).Value = Date
End If
End Sub
sorry to drag this one back up. The above works great. how can i modify the code so that it only fills in the date when certain text ("COMPLETED") is entered into the specified column? much appreciated.