With a formula
=if(c95="","",now())
and format to suit

Signature
Don Guillett
SalesAid Software
donaldb@281.com
> Is there a way to show the date and time a cell was changed in the cell next
> to it, instead of using track changes and getting the changes listed in a
[quoted text clipped - 5 lines]
> Thanks!
> Peri
Peri - 23 Jun 2005 23:28 GMT
Thank you for the response but now() will update every time changes are
made...i need it to stamp the time c95 was changed and not change the time
again...
> With a formula
> =if(c95="","",now())
[quoted text clipped - 10 lines]
>> Thanks!
>> Peri
Bob Phillips - 23 Jun 2005 23:58 GMT
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$C$59" Then
With Target
.Offset(0, 1).Value = Format(Now, "dd mmm yyyy hh:mm")
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub
'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.

Signature
HTH
RP
(remove nothere from the email address if mailing direct)
> Thank you for the response but now() will update every time changes are
> made...i need it to stamp the time c95 was changed and not change the time
[quoted text clipped - 14 lines]
> >> Thanks!
> >> Peri
Jordon - 23 Jun 2005 23:32 GMT
Won't that always show the date and time, now? As in, when ever it's opened?
> With a formula
> =if(c95="","",now())
[quoted text clipped - 10 lines]
> > Thanks!
> > Peri
aaron.kempf@gmail.com - 23 Jun 2005 23:47 GMT
crazy person.. use a database for this type of activity
See
http://www.mcgimpsey.com/excel/timestamp.html
> Is there a way to show the date and time a cell was changed in the cell next
> to it, instead of using track changes and getting the changes listed in a
[quoted text clipped - 5 lines]
> Thanks!
> Peri