ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Removing Links (https://www.excelbanter.com/excel-worksheet-functions/247538-removing-links.html)

Curtis

Removing Links
 
I have old links in a document that no longer exist however the file still
looks for them...... How can I deleted them.

Note: Data, Edit Connections, delete does not work

I use Excel 2007

Thanks

Bob Umlas[_3_]

Removing Links
 
Try looking in the defined names collection.


"Curtis" wrote in message
...
I have old links in a document that no longer exist however the file still
looks for them...... How can I deleted them.

Note: Data, Edit Connections, delete does not work

I use Excel 2007

Thanks



Gord Dibben

Removing Links
 
Do you mean DataEdit Links does not work?

Do you see the links in the dialog but cannot "break links"?

Perhaps the links are in defined names?

FormulasName Manager..............anything in there?


Gord Dibben MS Excel MVP

On Wed, 4 Nov 2009 11:04:02 -0800, Curtis
wrote:

I have old links in a document that no longer exist however the file still
looks for them...... How can I deleted them.

Note: Data, Edit Connections, delete does not work

I use Excel 2007

Thanks



ryguy7272

Removing Links
 
Use this code to break all links:

Sub UseBreakLink()
Dim astrLinks As Variant
astrLinks = ActiveWorkbook.LinkSources(Type:=xlLinkTypeExcelLi nks)
For i = 1 To UBound(astrLinks)
ActiveWorkbook.BreakLink _
Name:=astrLinks(i), _
Type:=xlLinkTypeExcelLinks
Next i
End Sub

http://www.anthony-vba.kefra.com/vba/vbabasic1.htm
http://www.rondebruin.nl/code.htm


HTH,
Ryan--

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Gord Dibben" wrote:

Do you mean DataEdit Links does not work?

Do you see the links in the dialog but cannot "break links"?

Perhaps the links are in defined names?

FormulasName Manager..............anything in there?


Gord Dibben MS Excel MVP

On Wed, 4 Nov 2009 11:04:02 -0800, Curtis
wrote:

I have old links in a document that no longer exist however the file still
looks for them...... How can I deleted them.

Note: Data, Edit Connections, delete does not work

I use Excel 2007

Thanks


.



All times are GMT +1. The time now is 04:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com