Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel 2000 mailto hyperlink

Status
Not open for further replies.

WindowWizard

IS-IT--Management
Apr 22, 2002
168
US
How do you disable hyperlinks from being created (globally) when entering addresses in cells? In Office XP there is an option to turn this off, but where is that option in Office 2000?
 
I couldn't find a way to do a "universal" removal of hyerlinks.

Here's a quick and nasty macro that will remove the hyperlink in selected cells. I'm fairly new in macros, but as far as I can tell it won't do anything to the cells except remove the hyperlink.


Sub hype()
'
'
Dim remhyp As Range

For Each remhyp In Selection
Selection.Hyperlinks.Delete
Next
End Sub Mike

Before: After
[morning] [bugeyed]
 
Thanks, but macros are purposely disabled on many of our systems. However, it is comforting to know that I'm not the only one who can't find a way. [peace]
 
The best way (non-macro) I can think of is by removing the hyperlink from one (rt click/ Hyperlink> Remove hyperlink), then copying the cell and then doing a Paste Special... Formats. Mike

Before: After
[morning] [bugeyed]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top