Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I set up a date to update individually on each worksheet?

I need the date on each worksheet in a workbook to update as the worksheet is
updated. Currently, if I update one worksheet the date on all of the sheets
in the book will update.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,939
Default How do I set up a date to update individually on each worksheet?

I assume that you are updating a Cell on the sheet somewhere??? If so then
you could use code something like this. The code is placed in the
ThisWorkbook module (right click the Excel logo next to File on the Excel
menu and select View Code). If you want it in the Footer or somewhere else
you will have to let us know...

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Sh.Range("A1").Value = Now() 'Add timestamp to cell A1 on active sheet
End Sub


--
HTH...

Jim Thomlinson


"chefbeavrdee" wrote:

I need the date on each worksheet in a workbook to update as the worksheet is
updated. Currently, if I update one worksheet the date on all of the sheets
in the book will update.

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
Update date & time in a cell only when worksheet is changed RJD Excel Discussion (Misc queries) 6 December 23rd 09 03:57 PM
Update a formula based on date worksheet was saved Kevin McQuain Excel Worksheet Functions 0 October 6th 05 02:06 PM
update a date cell only when worksheet is edited Joe Black Excel Discussion (Misc queries) 1 September 23rd 05 05:11 AM
Worksheet Revision Date update only once in the same day mikeburg[_14_] Excel Programming 8 August 18th 05 09:03 PM
Sorting each row individually yaghani Excel Programming 3 June 11th 04 03:28 AM


All times are GMT +1. The time now is 06:44 AM.

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"