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.
Private Sub Form_Load()
Dim ExcelApp As New Excel
Set ExcelApp = New Excel
Excel.Workbooks.Open "filename"
Excel.Application.Run "macro"
Excel.Application.SaveWorkspace
Excel.Workbooks.Close
Set Excel = Nothing
End Sub