Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello Sir
I have been working in the office 2000 on excel worksheet for an data entry purpose. The problem is i have copied many ids from internet and pasted in the work sheet it was pasted as hyperlink. I want to remove all the hyperlinks at once without removing / deleting the content. I just want to remove the hyperlink in the several ids. What is the step to remove it. Reply me as soon as possible. Thaking You... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
use the following macro
Sub RemoveAllHyperLinksPerSheet() Dim i As Integer For i = ActiveSheet.Hyperlinks.Count To 1 Step -1 ActiveSheet.Hyperlinks(i).Delete Next i End Sub " wrote: Hello Sir I have been working in the office 2000 on excel worksheet for an data entry purpose. The problem is i have copied many ids from internet and pasted in the work sheet it was pasted as hyperlink. I want to remove all the hyperlinks at once without removing / deleting the content. I just want to remove the hyperlink in the several ids. What is the step to remove it. Reply me as soon as possible. Thaking You... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Checkboxes vs. Option Buttons | Excel Discussion (Misc queries) | |||
Hyperlink Problem | Links and Linking in Excel | |||
Hyperlink Problem | Excel Discussion (Misc queries) | |||
disabling the underline when adding a hyperlink | Excel Discussion (Misc queries) | |||
Removing hyperlink | Excel Discussion (Misc queries) |