Thread: [Solved] Excel sheets
View Single Post
 
Old 04-12-2012, 11:21 PM
Catalin.B Catalin.B is offline Windows Vista Office 2010 32bit
Expert
 
Join Date: May 2011
Location: Iaşi, Romānia
Posts: 386
Catalin.B is on a distinguished road
Default

You can try this code (if you don't want to add hiperlinks manually):
Code:
Sub shNames()
Dim Wks
For Each Wks In ThisWorkbook.Worksheets

              Range("A65536").End(xlUp).Offset(1, 0).Select

              ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", _
              SubAddress:=Wks.Name & "!A1", TextToDisplay:=Wks.Name

       Next Wks

End Sub
Reply With Quote