"David" <dhi...@freeway.net> wrote in message news:119t2m1...@corp.supernews.com...
Append following code to the before save event of work book in the VBA
editor
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Range("A1").Value = Format((Now()), "DD/MMM/YY")
'where "A1" is cell address
End Sub
Open VBA editor by clicking ALT+11 if you are new to VBA programming and
select this work book and append the above code
Hope this will solve your problem
Regards
Ramesh Shetty
"Capt. Cave Man" <ItIsSoEasyAC...@upyers.org> wrote in message
news:98ioo4tj3r2q2v67u...@4ax.com...
> Right click on the file itself and select 'properties'. Examine the
> 'details' tab, and you can find a "date last saved" field. There is also
> a 'date mofified' field.
>
> There is a way to use that data as you open the file in excel to update
> an included "last edited" field you define on the sheet.