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 xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet
Set xlBook = Excel.ActiveWorkbook
Set xlSheet = xlBook.Sheets.Item("sheet2")
xlSheet.Activate
Dim xlApp As Excel.Application
Dim xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet
Set xlApp = Excel.Application
xlApp.Visible = True
Set xlBook = Excel.Workbooks.Add
Set xlSheet = xlBook.Sheets.Item("sheet2")
xlSheet.Activate