Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]() I seen many posts on in this forum on time stamps. My problem this that in a1:a10 are going to be the entries. I need upon each entry into each cell a time stamp in b1:b10, but I need this to be hard coded so that if I went back in a1and made a change it wouldn't change the time again in b1. Regards Antony -- AntonyY ------------------------------------------------------------------------ AntonyY's Profile: http://www.excelforum.com/member.php...o&userid=16690 View this thread: http://www.excelforum.com/showthread...hreadid=320465 |
#2
![]() |
|||
|
|||
![]()
Antony
Try this in a worksheet module. Right-click on your sheet tab and "View Code". Paste in there. Private Sub Worksheet_Change(ByVal Target As Range) 'Col B time will not change if data in Col A is edited On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:A10")) Is Nothing Then With Target If .Value < "" And .Offset(0, 1).Value = "" Then .Offset(0, 1).Value = Format(Now, "hh:mm:ss") End If End With End If ws_exit: Application.EnableEvents = True End Sub Gord Dibben Excel MVP On Thu, 25 Nov 2004 14:39:48 -0600, AntonyY wrote: I seen many posts on in this forum on time stamps. My problem this that in a1:a10 are going to be the entries. I need upon each entry into each cell a time stamp in b1:b10, but I need this to be hard coded so that if I went back in a1and made a change it wouldn't change the time again in b1. Regards Antony |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change the color of all series in an excel chart in one go. | Charts and Charting in Excel | |||
How to change the color of all series in an excel chart in one go. | Charts and Charting in Excel | |||
Change the default chart colours | Charts and Charting in Excel | |||
xy scatter graph with a scrolling time element | Charts and Charting in Excel | |||
What is the formula for getting time difference e.g. ("4 hrs 15 m. | Charts and Charting in Excel |