It's not possible to do it automatically, but you could run something like
Sub z()
Dim h As Hyperlink
Dim OldPath As String
Dim NewPath As String
OldPath = "c:\temp\"
NewPath = "c:\temp1\"
For Each h In ActiveSheet.Hyperlinks
With h
.Address = Replace(.Address, OldPath, NewPath)
.TextToDisplay = Replace(.TextToDisplay, OldPath, NewPath, compare:=vbTextCompare)
'// Add in any other properties you might want to change here
End With
Next
End Sub
To bulk update hyperlinks. Use whatever method you choose to populate OldPath & NewPath
Bookmarks