Hope you can help.
I have an massive work book with 60 work sheet but growing every day, on the control sheet column A is the Job number, this is also the name of the Worksheet, is there a way I can create a Macro to automatically add a hyperlink from the cell containing the job number to the worksheet for that job (with the same name) i have attached a very cut down version of the workbook
I have managed to get all worksheets listed on Sheet1, however this only works by removing the working links that are there re adding new ones and it adds all worksheets in the workbook not just those listed on the control sheet.
this is working from all the worksheets to a list I need it to work from the list and find the worksheet
thanks in advance
Sub ListSheets()
Dim ws As Worksheet
Dim x As Integer
x = 1
Sheets("Control").Range("A:A").Clear
For Each ws In Worksheets
Sheets("Control").Cells(x, 1).Select
ActiveSheet.Hyperlinks.Add _
Anchor:=Selection, Address:="", SubAddress:= _
ws.Name & "!A2", TextToDisplay:=ws.Name
x = x + 1
Next ws
End Sub