Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Change links for batch of workbooks
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Trish Smith, post: 6349592"] Hi everyone, I'm hoping someone can help me out. I've got about 40 workbooks each with between 7 and 11 sheets. The workbooks originally just held data and new (analysis) sheets were added from a template. The analysis sheets have lookup formulas relating back to the original template. If it is possible I would be grateful for someone to help me with code that can go through each of the workbooks (all in the same folder) and change the link from the template link to the data in the same workbook. I've found this bit of code in this forum and it does what I want but it's just as easy to go into the menus and do it that way. Thanks Trish Sub LinksChangeSourcewitherrortrap() Dim stroldlink As String Dim strnewlink As String MsgBox "Select Original link Sourcexxx" stroldlink = Application.GetOpenFilename _ ("Excel files,*.xls") MsgBox "Select workbook to change" strnewlink = Application.GetOpenFilename _ ("Excel files,*.xls") MsgBox ActiveWorkbook.Name On Error GoTo errorLinks 'No colon after label name here ActiveWorkbook.ChangeLink Name:=stroldlink, _ newname:=strnewlink, _ Type:=xlLinkTypeExcelLinks ' This one works at work On Error GoTo 0 'Cancels the error call. Exit Sub 'Place this immediately before errorLinks 'label so does not process unless there is an error. errorLinks: 'Note the colon after the label name MsgBox "An error has occurred. " & _ "This is possibly due to one of the following:-" _ & Chr(13) & "Incorrect Workbook name selected and/or" _ & Chr(13) & "Workbooks do not have same Worksheet names." _ & Chr(13) & "Check both the above and then re-run the macro." End Sub [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Change links for batch of workbooks
Top