Sub LastSaveDetails()
ActiveSheet.Range("A1") = "Last Saved " & FileDateTime(ThisWorkbook.FullName)
End Sub
Sub LastSaveDetails()
Dim sht As Worksheet
Application.ScreenUpdating = False
For Each sht In ThisWorkbook.Worksheets
If sht.Name <> "Sheet3" Then
sht.Activate
Range("B2").Value = "Updated: " & FileDateTime(ThisWorkbook.FullName)
End If
Next sht
Application.ScreenUpdating = True
End Sub