I am having the same problem...using Excel 2007...sheet not protected
Here is my Macro:
Sub UpdatePSReports()
'
' UpdatePSReports Macro
'
'PSReports As String
'Sheet1 AS String
'PSFileCurrent As String
Application.DisplayAlerts = False
PSReports = ActiveWorkbook.Name
ActiveWorkbook.Worksheets("sheet1").Select
Range("D1").Select
Numcount = Selection.Rows.Count
For n = 1 To Numcount
Workbooks(PSReports).Activate
PSFileCurrent = Cells(n + 1, 4)
PSFileNew = Cells(n + 1, 5)
ActiveWorkbook.ChangeLink Name:=PSFileCurrent, NewName:=PSFileNew, Type:=xlExcelLinks
Next n
End Sub
Bookmarks