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 objExcel As Object
Dim objSpreadsheet As Object
Set objExcel = CreateObject("Excel.Application")
objExcel.Workbooks.Open "C:\MySpreadsheet.xls"
objSpreadsheet = objExcel.Workbooks(1).WorkSheets(2) 'Or whatever
Debug.Print "Cell at Row=3, Col=4 on Worksheet=2, Wookbook=1 is " & objSpreadsheet.cells(3, 4))