If you don't have any other formulae, the easiest way is to copy / paste special values
other than that - this should get rid of external links:
Sub getridoflinks()
On Error Resume Next
application.screenupdating = false
application.calculation = xlcalculationmanual
With Worksheets("Sheet3"

.Cells 'use your worksheet name
Set c = .Find("='[", LookIn:=xlFormulas, lookat:=xlPart)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Copy
c.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
application.screenupdating = true
application.calculation = xlcalculationautomatic
End Sub
Rgds, Geoff
[blue]Si hoc signum legere potes, operis boni in rebus Latinus alacribus et fructuosis potiri potes![/blue]
Want the
[red]best[/red] answers to your questions ? faq222-2244