#1   Report Post  
Posted to microsoft.public.excel.newusers
ludite
 
Posts: n/a
Default functions

Indicate in a cell when a spreadsheet has been changed e.g. mailing lists
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Don Guillett
 
Posts: n/a
Default functions

Is there a question here?

--
Don Guillett
SalesAid Software

"ludite" wrote in message
...
Indicate in a cell when a spreadsheet has been changed e.g. mailing lists



  #3   Report Post  
Posted to microsoft.public.excel.newusers
ludite
 
Posts: n/a
Default functions

I have spreadsheets that I must keep track of when they were last edited. I
don't want the date it was opened =NOW() or =TODAY(), only if the spreadsheet
is changed. Is it possible to have that entered in a cell?
"ludite" wrote:

Indicate in a cell when a spreadsheet has been changed e.g. mailing lists

  #4   Report Post  
Posted to microsoft.public.excel.newusers
Don Guillett
 
Posts: n/a
Default functions

If you want an update each time ANY change is made copy paste this to the
macro module of the ThisWorkbook. Be aware that this will fire EACH time any
change is made.


Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
Sheets("sheet1").Range("c4") = Date
Application.EnableEvents = True

End Sub
--
Don Guillett
SalesAid Software

"ludite" wrote in message
...
I have spreadsheets that I must keep track of when they were last edited. I
don't want the date it was opened =NOW() or =TODAY(), only if the
spreadsheet
is changed. Is it possible to have that entered in a cell?
"ludite" wrote:

Indicate in a cell when a spreadsheet has been changed e.g. mailing lists



  #5   Report Post  
Posted to microsoft.public.excel.newusers
ludite
 
Posts: n/a
Default functions

Don
Thank you for your help. I have created the macro as you outlined below but
perhaps I need to clarify my understanding of "an update each time ANY change
is made ". I would like to be able to enter the date a spreadsheet is
updated in a cell on the sheet. Is there a function that does this?

"Don Guillett" wrote:

If you want an update each time ANY change is made copy paste this to the
macro module of the ThisWorkbook. Be aware that this will fire EACH time any
change is made.


Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
Sheets("sheet1").Range("c4") = Date
Application.EnableEvents = True

End Sub
--
Don Guillett
SalesAid Software

"ludite" wrote in message
...
I have spreadsheets that I must keep track of when they were last edited. I
don't want the date it was opened =NOW() or =TODAY(), only if the
spreadsheet
is changed. Is it possible to have that entered in a cell?
"ludite" wrote:

Indicate in a cell when a spreadsheet has been changed e.g. mailing lists






  #6   Report Post  
Posted to microsoft.public.excel.newusers
ludite
 
Posts: n/a
Default functions

Don
The macro to insert updated date in spreadsheets is working very well.
Thanks.

"ludite" wrote:

Don
Thank you for your help. I have created the macro as you outlined below but
perhaps I need to clarify my understanding of "an update each time ANY change
is made ". I would like to be able to enter the date a spreadsheet is
updated in a cell on the sheet. Is there a function that does this?

"Don Guillett" wrote:

If you want an update each time ANY change is made copy paste this to the
macro module of the ThisWorkbook. Be aware that this will fire EACH time any
change is made.


Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
Sheets("sheet1").Range("c4") = Date
Application.EnableEvents = True

End Sub
--
Don Guillett
SalesAid Software

"ludite" wrote in message
...
I have spreadsheets that I must keep track of when they were last edited. I
don't want the date it was opened =NOW() or =TODAY(), only if the
spreadsheet
is changed. Is it possible to have that entered in a cell?
"ludite" wrote:

Indicate in a cell when a spreadsheet has been changed e.g. mailing lists




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
Can I get Excel to determine the line curve formula without graph. Cadelima Excel Discussion (Misc queries) 8 December 20th 05 09:57 PM
User-defined functions created in Excel 2000 fail in Excel 2003 goodguy Excel Discussion (Misc queries) 1 October 3rd 05 07:04 PM
Database functions should use criteria in formula, as 1-2-3 does 123user Excel Worksheet Functions 8 September 29th 05 08:57 PM
Visible rows and functions that work tracy Excel Worksheet Functions 2 August 19th 05 05:25 AM
3 questions about automated c++ com add-in worksheet functions gert Excel Worksheet Functions 0 March 10th 05 09:57 AM


All times are GMT +1. The time now is 12:08 PM.

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

About Us

"It's about Microsoft Excel"