Hi All …
I can create a list (thanks to a post here) of all the sheets in the workbook.
Sub ListSheets()
Dim i As Long
Dim n As Long
n = ActiveWorkbook.Sheets.Count
Sheets(“Navigation”).Select
For i = 1 To n
Range(“A” & 10 + i) = ActiveWorkbook.Sheets(i).Name
Next i
Range(“A” & 10 & “:A” & 10 + n).Sort Key1:=Range(“A10”)
End Sub
Unfortunately, this also lists my “hidden” sheets, which I do not want. And, because I like to “baby” my users, what I’d really like to do is to make the entries in the list hyperlinks to the sheet itself. The sheets are created dynamically in the macro …
Any hints/help, as always, is greatly appreciated.
–cat