deleting internet links

  • Thread starter Thread starter gbeard
  • Start date Start date
G

gbeard

I've copied links from the internet into a sheet. Is it possible to kill
the link and just keep the text in the cell so the text is no longer a link
and no longer underlined?
 
right click on the link and choose "Remove hyperlink"

-- Carlos
 
Thanks Carlos,
It worked great! Is there a way to remove more than one at a time? I've
got a list of a few hundred and I'd like to remove all the links.

Thanks,
 
select the entire list
copy
in another location, paste special > values
copy the values and paste back into the original location

i tried to do a paste special in-place but it didn't work

--Carlos
 
Sub Remove_Links()
Selection.Hyperlinks.Delete
End Sub


Gord Dibben Excel MVP
 
Yet another simple way:

write in any cell the value of 1, copy it, then select the range with
the hyperlinks,
choose: paste special, multiply..
 
Or even shorter, copy an empty cell and paste special and select add
 

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.

Ask a Question

Back
Top