Hi,
I have used this code to create a list of the worksheets included in the WB. I also created a hyperlink to each sheet. How can I insert a button on every sheet that will bring the users back to "Home Page"?
Option Explicit
Sub SheetNames()
Dim i As Integer
Application.ScreenUpdating = False
Columns(1).Insert
For i = 1 To Sheets.Count
Cells(i, 1) = Sheets(i).Name
Next i
Application.ScreenUpdating = False
End Sub
I have used this code to create a list of the worksheets included in the WB. I also created a hyperlink to each sheet. How can I insert a button on every sheet that will bring the users back to "Home Page"?
Option Explicit
Sub SheetNames()
Dim i As Integer
Application.ScreenUpdating = False
Columns(1).Insert
For i = 1 To Sheets.Count
Cells(i, 1) = Sheets(i).Name
Next i
Application.ScreenUpdating = False
End Sub