hi
sorry if this is too late for your deadline
it should be possible to do this with a macro. For example, this macro should change the links in the active sheet from "sheet1" to "January"
if it doesn't work, could you give a bit more info on the sheets you want to link to and from, and the type of hyperlink used? If you could upload a workbook with some examples of what you want that would be even better
Sub Hyperlinks_change()
Dim OldName As String, NewName As String, HL As Hyperlink
OldName = "Sheet1"
NewName = "January"
For Each HL In ActiveSheet.Hyperlinks
HL.SubAddress = Replace(HL.SubAddress, OldName, NewName)
HL.Address = Replace(HL.Address, OldName, NewName)
HL.TextToDisplay = Replace(HL.TextToDisplay, OldName, NewName)
Next HL
End Sub
Bookmarks