Can Remove Hyperlinks

sayme

New Member
Joined
Apr 21, 2018
Messages
17
How can I stop excel from making a cell clickable if I got an email address in it? I keep opting for "remove hyperlink". But when I click back in it it becomes a hyperlink again and it becomes clickable. I tried formatting it as "general" or "text" but that doesnt work. ANy help will do.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
.
I notice here that it only becomes a hyperlink again if the cell is DOUBLE CLICKED.

A single click does not re-create the hyperlink.

You could also paste this small macro into the sheet level module. Right click the sheet tab where the hyperlink is located, select VIEW CODE.
Paste this macro in large white window on the right :

Code:
Option Explicit


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Range("F5").Hyperlinks.Delete
End Sub

Change the cell reference "F5" to match the cell location on your sheet.
 
Upvote 0
Try File >> Options >> Proofing
Click on the button labeled "AutoCorrect Options..."
On the tab labeled AutoFormat as You Type", uncheck the option "Replace as you type :: Internet and network paths with hyperlinks".
OK your way out.
 
Upvote 0
.
You could also paste this small macro into the sheet level module. Right click the sheet tab where the hyperlink is located, select VIEW CODE.
Paste this macro in large white window on the right :

Code:
Option Explicit


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Range("F5").Hyperlinks.Delete
End Sub

The beauty of VBA. Actually i used thisoldman's way. Thanks anyway partner!

Change the cell reference "F5" to match the cell location on your sheet.

Try File >> Options >> Proofing
Click on the button labeled "AutoCorrect Options..."
On the tab labeled AutoFormat as You Type", uncheck the option "Replace as you type :: Internet and network paths with hyperlinks".
OK your way out.

Perfect! Thank you.
 
Upvote 0

Forum statistics

Threads
1,215,833
Messages
6,127,157
Members
449,367
Latest member
w88mp

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top