View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Display last date edited in workbook

Hi Kathy
the following code will display in cell A1 the date the workbook was
saved the last time:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Range("A1").Value = Date
End Sub

put this in your workbook module and save the file
HTH
Frank


kathy wrote:
Hello,

I need to display the last date a workbook was edited.
Any ideas?