Skip to content

Instantly share code, notes, and snippets.

@kytu800
Created November 2, 2013 15:34
Show Gist options
  • Save kytu800/7280151 to your computer and use it in GitHub Desktop.
Save kytu800/7280151 to your computer and use it in GitHub Desktop.
Sub Worksheet_Activate()
Dim wSheet As Worksheet
Dim l As Long
l = 1
With Me
.Columns(1).ClearContents
.Cells(1, 1) = "INDEX"
.Cells(1, 1).Name = "Index"
End With
For Each wSheet In Worksheets
If wSheet.Name <> Me.Name Then
l = l + 1
With wSheet
.Range("A1").Name = "Start_" & wSheet.Index
.Hyperlinks.Add Anchor:=.Range("A1"), Address:="", _
SubAddress:="Index", TextToDisplay:="Back to Index"
End With
Me.Hyperlinks.Add Anchor:=Me.Cells(l, 1), Address:="", _
SubAddress:="Start_" & wSheet.Index, TextToDisplay:=wSheet.Name
End If
Next wSheet
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment