Break Links often fails. Why and what is a work around?

General Ledger

Active Member
Joined
Dec 31, 2007
Messages
460
Dear All,

What the heck is wrong with the Break Link tool in Excel 2010 !?!?!

It seems sometimes it works and other times it does not.

I have workbooks with dozens of links to more than one other workbook.

I break links, save, close, open, and repeat. Sometimes I am successful in breaking all links and sometimes not.

I even ran a macro which seems powerless.

Code:
Sub BreakLinks()
    Dim Links As Variant
    Dim i As Integer
    With ActiveWorkbook
        Links = .LinkSources(xlExcelLinks)
        If Not IsEmpty(Links) Then
            For i = 1 To UBound(Links)
                .breaklink Links(i), xlLinkTypeExcelLinks
            Next i
        End If
    End With
End Sub

What is the problem?

Is there a work-around?

Thanks,

A Very Frustrated User
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,214,805
Messages
6,121,664
Members
449,045
Latest member
Marcus05

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top