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.
Dim objExcelApp As Excel.Application
Dim xlsExcelSheet As Excel.Worksheet
' Create the Excel application.
Set objExcelApp = New Excel.Application
'nextline opens your workbook
objExcelApp.Workbooks.Open "Your Excel Sheet"
objExcelApp.Visible = True
' Add the Excel spreadsheet.
[red]objExcelApp.Worksheets.Add[/red]