Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub test()
Dim msg As String
msg = "Last Saved By: "
msg = msg & ThisWorkbook.BuiltinDocumentProperties("Last Author") & vbCrLf
msg = msg & "Date Saved: " & ThisWorkbook.BuiltinDocumentProperties("Last Save Time")
MsgBox msg
End Sub