How do I stop e-mail address from turning into link in Excel?

G

Guest

In Excel, when you type an e-mail address into a cell, it turns into a link.
How do I correct it so that when I enter the e-mail address, it doesn't turn
blue and become a link? The only two methods I've discovered by
experimentation are to put an apostrophe at the beginning of the address, or
to type the address, hit enter, and then immediately click "undo" before
typing the next e-mail address. Both these methods are cumbersome. Is there
a way to highlight an entire column of e-mail addresses that have already
been entered, and change them so that they are no longer a link? Thank you!
Sherrie Holmes
 
R

Ron de Bruin

Hi Wowie

In 2002/2003 you can turn it of

Tools > Options > Spelling
Press "AutoCorrect Options" Button
AutoFormat As You Type Tab
Remove Check from "Internet and network paths with hyperlinks"
OK
OK

If you have fill in a address and Enter to confirm you
can use Ctrl-Z to make it text.

Or start with a '

You can run this macro also to make text of all hyperlinks
in your worksheet

Sub test()
ActiveSheet.Hyperlinks.Delete
End Sub

Alt-F11
Insert>Module from the menubar
paste the sub in there
Alt-Q to go back to Excel

If you do Alt-F8 you get a list of your macro's
Select "test" and press Run
 
G

Guest

To prevent the auto-creation of the Links, you can go to
Tools>AutoCorrectOptions>AutoFormat as You Type and uncheck the checkbox
Replace as you type: Internet and network paths with hyperlinks.

The simplest way I can think of to remove the hyperlinks off of a long list
after they are created, would be to copy the range of cells, go to a blank
part of the sheet and Edit>Paste Special>Values (you can leave the other
settings at their default). You can then immediately do a cut and regular
paste back to the original range of cells
 
G

Gord Dibben

Even simpler in my estimation.

Copy an empty cell.

Select the hyperlink cells and Paste Special>Add>OK>Esc.


Gord Dibben Excel MVP
 

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