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
' Add the Excel spreadsheet.
objExcelApp.Workbooks.Add
' Check for later versions.
If Val(objExcelApp.Application.Version) >= 8 Then
Set xlsExcelSheet = objExcelApp.Worksheets(1)
Else
Set xlsExcelSheet = objExcelApp
End If