How to get rid of hidden external link

dan52

New Member
Joined
Jun 21, 2017
Messages
4
I have a file with an external link that I can't locate, break or delete. In fact, I isolated the link to one particular tab, deleted all of the other tabs, and then deleted all of the content on the "corrupted" tab and it's still there. I'd love to post the file in case someone knows how to find the problem, but I don't know how to attach a file to a question. Any suggestions?? Dan
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Links can hide in a lot of places.

You could put the workbook on box.net and post a link.
 
Upvote 0
Here's a link to the file on Google Drive:
https://drive.google.com/open?id=1b08v4-maLGeMCQeRFGHFbR1KJqK7l44f

If you download it and open it in excel, it should have a link to an external file at "K:\Documents and Settings\gina.g.smith\Deskt...\DONBIS Recon" that I can't find, delete, open, change or break. It came from a much more complex workbook, but I deleted everything else one step at a time trying to find the location of the problem. Can anyone help me fix this? Thanks.
 
Upvote 0
Run this:

Code:
Sub Unhide()
  Dim oNam         As Name
  For Each oNam In ActiveWorkbook.Names
    oNam.Visible = True
  Next
End Sub
Then look at that big list of names in Name Manager. Delete 'em.

The delete the data validation in C4 and P3.
 
Upvote 0
Ctrl+G (Go To) > Special > Data Validation
 
Upvote 0
Thanks! We've worked around this problem for weeks. I should have come to the BB sooner. Really appreciate your help.
 
Upvote 0

Forum statistics

Threads
1,214,824
Messages
6,121,784
Members
449,049
Latest member
greyangel23

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