Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / June 2005

Tip: Looking for answers? Try searching our database.

timestamp

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Peri - 23 Jun 2005 23:09 GMT
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
new sheet or highlited - i want them to be in the next cell.
for instance:
cell c95 was blank - when the user entered number 123722 in c95 i want D95
to show the date/time...
any suggestions?
Thanks!
Peri
Don Guillett - 23 Jun 2005 23:22 GMT
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
JE McGimpsey - 24 Jun 2005 06:07 GMT
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
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.