Excel 2003 - Turning off hyperlinks?

P

Paul B

Hi

Advice appreciated - When I copy and paste data phrases with hyperlinks into
excel 2003 i.e. several hundred lines all hyperlinked in column A, I can
turn off each hyperlink individually by right clicking the mouse and a 'turn
off' facility being there , but I can't highlight all the hyperlinks and
turn them off in one action - it won't do it. Is it possible to turn all
off with one facility?

Many thanks
Paul B.
 
D

Dave Peterson

You could use a small macro to remove the hyperlinks from the current selection.

option explicit
sub testme()
selection.hyperlinks.delete
end sub

or you could just type the command that does the work into the immediate window
in the VBE:

hit alt-f11 (to get to the VBE)
hit ctrl-g (to see the immediate window)

type this and hit enter
selection.hyperlinks.delete
 

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

Top