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 Workbook_Open()
Application.CommandBars("Worksheet Menu Bar").Enabled = False
End Sub
Private Sub ExcelButton_Click()
Dim MyExcel As New Excel.Application
Dim XLDoc As Excel.Workbook
Set XLDoc = MyExcel.Workbooks.Open("Full path to the Excel spreadsheet")
With MyExcel
.Visible = True
End With
Set MyExcel = Nothing
End Sub