A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Under Edit - Links, there's a button to "Change source". Allows you to change the source for any linked workbook(s) you have. If you record a macro of this, you can get the coding structure. A basic layout would like this:
Sub ChangeAddress()
Dim NewName As String
Dim CurrentName as String
NewName = ActiveSheet.Range("A1").Value
CurrentName = ActiveSheet.Range("A2").Value 'Develop some way of building this
ActiveWorkbook.ChangeLink Name:=CurrentName, NewName:= _
NewName, Type:=xlExcelLinks
End Sub