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 ws as worksheet, lRow as long
with Sheets("MyWorksheetListSheet")
.clearcontents
.[A1] = "SheetList"
lRow = 2
for each ws in worksheets
if ws.name <> .name then
.cells(lRow, 1).value = ws.name
lRow = lRow + 1
end if
next
end with