This worked!!! You guys are lifesavers! Thanks so much. I do have one other
question. Is there any way to change it to regular time instead of military
time?
I am currently doing something similar, where data inputted in column A will
insert the date into column E.
This is to copied through the whole worksheet (well down to about 500ish
rows)
I have used the formula:
=IF(COUNTA(A102)<>0,NOW(),"")
In column E and inserted the following in visual basics:
Private Sub WorkSheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A:A")) Is Nothing Then
With Target
If .Value <> "" Then
.Offset(0, -1).Value = Format(Now, "dd mmm yyyy hh:mm:ss")
End If
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub
However, redaing the below, it is likely that the above is incorrect (offset
values error??)
Please could someone help and advise,
NB, this will be used on machines that use XP office, 2003 & 2007.
Thanks
Aaron
> This worked!!! You guys are lifesavers! Thanks so much. I do have one
> other
[quoted text clipped - 60 lines]
>> >>>unchanged once it's calculated the first time? Thanks.
>> >>>Larry
Jarek Kujawa - 20 Aug 2008 11:11 GMT
why not
If Not Intersect(Target, Me.Range("E:E")) Is Nothing Then
?