ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   different datestamps for different spreadsheets in a workbook (https://www.excelbanter.com/excel-discussion-misc-queries/74868-different-datestamps-different-spreadsheets-workbook.html)

LynnH

different datestamps for different spreadsheets in a workbook
 
Hi,
I have a workbook that contains several spreadsheets. I currently have the
footer set for all the worksheets to pull the date from the system. How do I
set up the date so that the footer date changes only on the specific
spreadsheet that has been updated, and not for the entire workbook?

Thanks!

JE McGimpsey

different datestamps for different spreadsheets in a workbook
 
One way:

Put this in the ThisWorkbook code module:

Private Sub Workbook_SheetChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range)
Sh.PageSetup.LeftFooter = _
"Last Changed: " & Format(Date, "dd mmm yyyy")
End Sub



If you're not familiar with macros, see

http://www.mvps.org/dmcritchie/excel/getstarted.htm



In article ,
"LynnH" wrote:

Hi,
I have a workbook that contains several spreadsheets. I currently have the
footer set for all the worksheets to pull the date from the system. How do I
set up the date so that the footer date changes only on the specific
spreadsheet that has been updated, and not for the entire workbook?

Thanks!



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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com