ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Formula for Last Saved on outside of Header/Footer (https://www.excelbanter.com/excel-worksheet-functions/38641-formula-last-saved-outside-header-footer.html)

Kempster

Formula for Last Saved on outside of Header/Footer
 
I am wanting to have a cell reference that displays the Date the file was
last saved on. Or unless someone knows of another way for me to display on
my spreadsheet "Updated on .............". I don't want to use it in the
Header/Footer section though.

I am not real good with VBasic so a formula like =cell(filename",A1) would
be good.

Ron de Bruin

Hi Kempster

Try this event in the Thisworkbook module that run when you save your workbook
It will fill in the date in Sheets("Sheet1").Range("a1").

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _
Cancel As Boolean)
'If you save the file the date will be placed in cell A1 of Sheet1
Sheets("Sheet1").Range("a1").Value = "Updated on " & Date
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Kempster" wrote in message ...
I am wanting to have a cell reference that displays the Date the file was
last saved on. Or unless someone knows of another way for me to display on
my spreadsheet "Updated on .............". I don't want to use it in the
Header/Footer section though.

I am not real good with VBasic so a formula like =cell(filename",A1) would
be good.





All times are GMT +1. The time now is 10:17 AM.

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