G
Gustavo Strabeli
Hi!
I have inserted the following code to have Excel showing me the last date
document was saved:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Sheets("Sheet1").Range("A1").Value = Format(Now(), "mmmm dd, yyyy - hh:mm")
End Sub
The point is: I have 2 sheets on the same workbook.
If I make some change on Sheet2, last saved date on Sheet1 is also changed.
Does anyone know how to correct that?
Thanks beforehand,
Gustavo.
I have inserted the following code to have Excel showing me the last date
document was saved:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Sheets("Sheet1").Range("A1").Value = Format(Now(), "mmmm dd, yyyy - hh:mm")
End Sub
The point is: I have 2 sheets on the same workbook.
If I make some change on Sheet2, last saved date on Sheet1 is also changed.
Does anyone know how to correct that?
Thanks beforehand,
Gustavo.