If you want to delete the hyperlinks...........not the contents, run this
macro.
Sub Delete_Hyperlinks()
Dim Cell As Range
For Each Cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
Cell.Hyperlinks.Delete
Next Cell
End Sub
To prevent future hyperlinking see JP's reply.
Gord Dibben MS Excel MVP
On Wed, 23 Sep 2009 12:10:02 -0700, bill s <bill
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.