Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 7
Default date last updated

Hello

Is there a way to show on the excel worksheet when it was last updated.
i.e. not when it was just last saved but when the data was actually modified
whether it be via a link or manually inputted. i know the time will change
every time any cell is selected but i need it to remember when a cell is
altered, ive tried using a circular reference but this only shows the time
that the data was origionally inputted i.e.
=IF(CF3="","",IF(CH3="",TODAY(),CH3))

any ideas

Regards

Hoyt
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1,726
Default date last updated

I think that you would need VBA event code


Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit
Application.EnableEvents = False

If Target.Address < "$CH$3" Then
With Target
.Value = Format(Date,"dd mmm yyyy"
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


--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)


"hoyt" wrote in message
...
Hello

Is there a way to show on the excel worksheet when it was last updated.
i.e. not when it was just last saved but when the data was actually
modified
whether it be via a link or manually inputted. i know the time will change
every time any cell is selected but i need it to remember when a cell is
altered, ive tried using a circular reference but this only shows the time
that the data was origionally inputted i.e.
=IF(CF3="","",IF(CH3="",TODAY(),CH3))

any ideas

Regards

Hoyt



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Time and Date stamp - Pivot Chart Bemidji Excel Discussion (Misc queries) 6 October 25th 06 02:50 PM
Date in middle of month Sunnyskies Excel Discussion (Misc queries) 10 October 23rd 06 03:23 PM
Date formulas DRondeau Excel Discussion (Misc queries) 7 September 6th 06 09:53 PM
How do I print the last date a worksheet was updated in a footer? merlingirl Excel Discussion (Misc queries) 0 January 5th 06 04:25 PM
How do I keep the date from being updated every day JDP Excel Discussion (Misc queries) 3 December 23rd 04 07:53 PM


All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"