ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Date Last Modified Function (https://www.excelbanter.com/excel-worksheet-functions/57339-date-last-modified-function.html)

Leon

Date Last Modified Function
 
Hi guys,

I am wondering if there is a function in excel that can show the date
my .xls fle was last modified?

So i need it to only change when any cells are changed with in the
workbook but if the workbook is opened and just viewed at, the date
will not change.

Thanks for the help.


Bob Phillips

Date Last Modified Function
 
You would need to build that yourself, with VBA

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
With ThisWorkbook
.Names.Add Name:="___ChangeTime", RefersTo:=Now
.Names("___ChangeTime").Visible = False
End With
End Sub


You can access on a worksheet with this UDF

Function DateChanged()
Application.Volatile
DateChanged = Evaluate(Parent.Parent.Names("___ChangeTime").Refe rsTo)
End Function


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Leon" wrote in message
oups.com...
Hi guys,

I am wondering if there is a function in excel that can show the date
my .xls fle was last modified?

So i need it to only change when any cells are changed with in the
workbook but if the workbook is opened and just viewed at, the date
will not change.

Thanks for the help.




Leon

Date Last Modified Function
 
Thanks alot bro ill try that right now.



All times are GMT +1. The time now is 02:22 AM.

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