ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Break phantom link (https://www.excelbanter.com/excel-discussion-misc-queries/121840-break-phantom-link.html)

MSPLearner

Break phantom link
 
I have link that shows up in Edit Links dialog box. When I click Break Link
button, a warnig dialog tells me "breaking links permanently..blah blah
blah". Click Break Links does nothing - the link is still there. I have tried
to search across the workbook for "[", but find nothing. I can't download any
utilities mentioned in the forum because my workstation is completely locked
down. Is there a way out?

Help!

Ron de Bruin

Break phantom link
 
Hi MSPLearner

Try this macro

Sub Break_Links_To_other_Excel_Workbooks()
'This example convert formulas that point to another Excel workbook to
values
'It will not convert other Excel formulas to values.
'Note that BreakLink is added in Excel 2002
Dim WorkbookLinks As Variant
Dim wb As Workbook
Dim i As Long

Set wb = ActiveWorkbook

WorkbookLinks = wb.LinkSources(Type:=xlLinkTypeExcelLinks)
If IsArray(WorkbookLinks) Then
For i = LBound(WorkbookLinks) To UBound(WorkbookLinks)
wb.BreakLink _
Name:=WorkbookLinks(i), _
Type:=xlLinkTypeExcelLinks
Next i
Else
MsgBox "No Links to other workbooks"
End If
End Sub



--

Regards Ron de Bruin
http://www.rondebruin.nl



"MSPLearner" wrote in message
...
I have link that shows up in Edit Links dialog box. When I click Break
Link
button, a warnig dialog tells me "breaking links permanently..blah blah
blah". Click Break Links does nothing - the link is still there. I have
tried
to search across the workbook for "[", but find nothing. I can't download
any
utilities mentioned in the forum because my workstation is completely
locked
down. Is there a way out?

Help!



MSPLearner

Break phantom link
 
Thanks, I will try it out.

"Ron de Bruin" wrote:

Hi MSPLearner

Try this macro

Sub Break_Links_To_other_Excel_Workbooks()
'This example convert formulas that point to another Excel workbook to
values
'It will not convert other Excel formulas to values.
'Note that BreakLink is added in Excel 2002
Dim WorkbookLinks As Variant
Dim wb As Workbook
Dim i As Long

Set wb = ActiveWorkbook

WorkbookLinks = wb.LinkSources(Type:=xlLinkTypeExcelLinks)
If IsArray(WorkbookLinks) Then
For i = LBound(WorkbookLinks) To UBound(WorkbookLinks)
wb.BreakLink _
Name:=WorkbookLinks(i), _
Type:=xlLinkTypeExcelLinks
Next i
Else
MsgBox "No Links to other workbooks"
End If
End Sub



--

Regards Ron de Bruin
http://www.rondebruin.nl



"MSPLearner" wrote in message
...
I have link that shows up in Edit Links dialog box. When I click Break
Link
button, a warnig dialog tells me "breaking links permanently..blah blah
blah". Click Break Links does nothing - the link is still there. I have
tried
to search across the workbook for "[", but find nothing. I can't download
any
utilities mentioned in the forum because my workstation is completely
locked
down. Is there a way out?

Help!





All times are GMT +1. The time now is 10:41 PM.

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