Each of the following examples will fit your needs. Here is a macro for only one of the attached workbooks:
Option Explicit
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
Sheets("Index").Activate
Sheets("Index").Range("A1").Select
End Sub
Sub RenameTabs()
Dim ran As Range
Dim cel As Object
Dim LastRow As Long
Dim i As Integer
Set ran = Worksheets("Index").Range("B2:B100")
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
For Each cel In ran
For i = 1 To LastRow
If IsEmpty(Cells(i, 1)) Then
Else
If cel.Value <> "" Then
ActiveWorkbook.Worksheets.Add After:=Worksheets(Worksheets.Count)
ActiveSheet.Name = CStr(cel.Offset(0, 0).Value)
Else
Exit For
End If
End If
Next i
Next cel
Worksheet_Activate
End Sub
Bookmarks