1: 2: 3: 4: 5: 6: 7: 8: 9: 10:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink) Dim strShtName As String strShtName = Left(Target.SubAddress, InStr(1, Target.SubAddress, "!") - 1) With Worksheets(strShtName) .Visible = xlSheetVisible .Select End With End Sub