Break External Links with other workbooks

At times you come across the this dialog box when you open an Excel workbook. To get rid of this you can run a small piece of code just once. This code would break all links.

Sub TestRun() Call BreakExternalXLLinks(ThisWorkbook) End Sub Sub BreakExternalXLLinks(wbk As Workbook) Dim strLinks As Variant Dim intLoop As Integer strLinks = wbk.LinkSources(Type:=xlLinkTypeExcelLinks) If IsEmpty(strLinks) Then MsgBox "No external link found.", vbInformation, "Excel Expert Utility" Exit Sub End If For intLoop = 1 To UBound(strLinks) wbk.BreakLink strLinks(intLoop), xlLinkTypeExcelLinks Next intLoop Erase strLinks End Sub
»
- Vishesh's blog
- Add new comment
- 1555 reads

Recent comments
5 hours 1 min ago
8 hours 25 min ago
8 hours 48 min ago
14 hours 50 min ago
15 hours 42 min ago
1 day 6 hours ago
1 day 6 hours ago
1 day 9 hours ago
1 day 17 hours ago
2 days 13 hours ago