Hi All.
Please check this code for time stamp
this is a working code. I try to use this code in another worksheet but it won't work.
what should be change in the code if i want to use it in another worksheet (same workbook)
planning to add a few page (Sheets) with time stamp feature.
Hope to get help. Thanks.
Please check this code for time stamp
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("C3:C10")) Is Nothing Then
If Target.Count = 1 Then
Range("B" & Target.Row) = Format(Now, " h:mm AMPM;@")
End If
Application.EnableEvents = True
End Sub
what should be change in the code if i want to use it in another worksheet (same workbook)
planning to add a few page (Sheets) with time stamp feature.
Hope to get help. Thanks.