Can’t Break External Links (NO MATTER WHAT)

petiteshiraz

Board Regular
Joined
May 16, 2005
Messages
145
I have three references to external links that I am trying to kill, but with no result. I’ve tried finding the external link to remove it via the standard methods described in the link below, but with no result.
https://support.office.com/en-au/ar...eference-89049c04-cbf3-4112-9221-849454341f1a

I’ve tried several times to break the links in the “Edit Links” tool. I see each source link listed, but nothing happens when I try to break the link.

Any ideas on how I can do this?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Ron Coderre

MrExcel MVP
Joined
Jan 14, 2009
Messages
2,316
I've seen workbooks with hidden names that reference other workbooks.

Try running this little macro:

• ALT+F11…to open the Visual Basic Editor
• Right-click on your workbook's name in the VBA - Projects window
...Select: Insert Module
• Copy the below VBA code and paste it into that module:
Code:
Public Sub MakeRangeNamesVisible()
Dim wbk As Workbook
Dim nmName As Name
Set wbk = ActiveWorkbook
For Each nmName In wbk.Names
    nmName.Visible = True
Next nmName
End Sub

Then check your names:
Formula.Name Manager

Does that help
 
Upvote 0

petiteshiraz

Board Regular
Joined
May 16, 2005
Messages
145
Hi Ron.

I was able to follow your instruction up to the point where you say:

"Then check your names:
Formula.Name Manager"

How/where do I check names?
 
Upvote 0

petiteshiraz

Board Regular
Joined
May 16, 2005
Messages
145
By the way, I had already checked the "Name Manager" tool in the FORMULAS toolbar. I went through and did not find anything referring to external links there.
 
Upvote 0

Ron Coderre

MrExcel MVP
Joined
Jan 14, 2009
Messages
2,316
Yes...The name manager is what I wanted you to check.
If there were hidden names, you wouldn't have seen them until after running the macro I posted.
If you still do not see any references to other workbooks, then hidden range names is not the issue.

Have you already checked for hidden worksheets?
 
Upvote 0

Forum statistics

Threads
1,195,683
Messages
6,011,138
Members
441,587
Latest member
kbsgiri09

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
Top