Hi,
I think that's ok now.
It will create all the hyperlinks
Place it on the Button code
Private Sub CommandButton1_Click()
Dim htSheetaa As Range
Dim htSheetab As Range
Dim lnInc As Integer
lnInc = 21
Application.ScreenUpdating = False
Do
htSheeta = Cells(lnInc, 3).Text
htSheetb = Cells(lnInc, 8).Text
Set htSheetaa = Cells(lnInc, 17)
Set htSheetab = Cells(lnInc, 20)
If htSheeta <> "" Then
ActiveSheet.Hyperlinks.Add Anchor:=htSheetaa, Address:="", SubAddress:= _
" " & htSheeta & "!A1", TextToDisplay:=" " & htSheeta & " "
End If
If htSheetb <> "" Then
ActiveSheet.Hyperlinks.Add Anchor:=htSheetab, Address:="", SubAddress:= _
" " & htSheetb & "!A1", TextToDisplay:=" " & htSheetb & " "
End If
lnInc = lnInc + 1
Loop Until lnInc = 201
Application.ScreenUpdating = True
End Sub
This one will delete all the hypelinks.
Add a new button and place the code.
Private Sub CommandButton2_Click()
Application.ScreenUpdating = False
Range("Q21:Q200").Select
Selection.ClearContents
Range("T21:T200").Select
Selection.ClearContents
Range("Q21").Select
Application.ScreenUpdating = True
End Sub
Let me know if it's everything ok
Bookmarks