I have a file that has multiple worksheets. The first sheet is a summary sheet pulling information from every other sheet. The first column lists the names of every sheet after the first one. I am trying to have all of those names have links to them, but the problem is my code is adding a link to the current sheet I am on. How do I get it to skip the first sheet aka "Summary-Sheet"
Dim Ws As Worksheet
Worksheets("Summary-Sheet").Select
Range("A2").Select
For Each Ws In ActiveWorkbook.Worksheets
ActiveCell.Hyperlinks.Add Anchor:=ActiveCell, Address:="", SubAddress:="" & Ws.Name & "!A2" & "", ScreenTip:="", TextToDisplay:=Ws.Name
ActiveCell.Offset(1, 0).Select
Next Ws
Bookmarks