Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How to stop opening outlook in excel when clicking into a cell that contains
an email address. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Well, you can stop Excel from automatically converting email addresses
to hyperlinks. Tools Options Spelling click 'AutoCorrect Options AutoFormat As You Type uncheck 'Internet and network paths with hyperlinks' --JP On Sep 23, 3:10*pm, bill s <bill wrote: How to stop opening outlook in excel when clicking into a cell that contains an email address. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 wrote: How to stop opening outlook in excel when clicking into a cell that contains an email address. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Opening outlook in Excel | Excel Discussion (Misc queries) | |||
Stop Excel from Formatting Copied Data from Outlook | Excel Discussion (Misc queries) | |||
How to stop outlook from popping up on an excel spreadsheet | Excel Discussion (Misc queries) | |||
Opening Excel Files from Outlook | Excel Discussion (Misc queries) | |||
Excel Attachments not opening in Outlook | Excel Discussion (Misc queries) |