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.
o=CREATEOBJECT("excel.application")
mywb=o.Workbooks.Add() && Change this if its an existing one
mySheet=mywb.ActiveSheet
?mySheet.Name
o=CREATEOBJECT("excel.application")
mywb=o.Workbooks.Add() && Change this if its an existing one
nCount = mywb.Sheets.Count
FOR i = 1 TO nCount
?mywb.sheets(i).name
ENDFOR