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 xlApp As Excel.Application
Dim wb As Workbook, ws As Worksheet
Set xlApp = New Excel.Application
xlApp.Visible = True
xlApp.WindowState = xlMaximized
'Open the Data File
Set wb = xlApp.Workbooks.Open("C:\YourFile.xls")
'Select the Desired Sheet
Set ws = wb.Sheets("Sheet1")
ws.Select
'Modify Cells Here
ws.Cells(1, 2) = "am"
ws.Cells(1, 3) = "um"
ws.Cells(1, 4) = "von"
'SKIP - Close/Save Changes/Exit Excel
'wb.Close True
'xlApp.Quit
'Clear Objects
Set ws = Nothing
Set wb = Nothing
Set xlApp = Nothing