Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
rai rai is offline
external usenet poster
 
Posts: 1
Default remove hyperlink of many cell at a time?

i am trying to romove many hyperlink at a time by selecting all cell but dint
support.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,203
Default remove hyperlink of many cell at a time?

Remove ALL hyperlinks on a sheet:

Sub RemoveAllHyperlinks()
Cells.Select
Do While Selection.Hyperlinks.Count 0
Selection.Hyperlinks.Delete
Loop
Range("A1").Select
End Sub

Choose the sheet, run the Macro.

to be able to just remove hyperlinks in a single column or other smaller
range, remove the
Cells.Select
line from the code, then select the cells with hyperlinks in them and run
the macro.

Need help putting the code into the workbook? See:
http://www.jlathamsite.com/Teach/Excel_GP_Code.htm

Just copy and paste from above.

"rai" wrote:

i am trying to romove many hyperlink at a time by selecting all cell but dint
support.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom functions calculating time arguments Help Desperate Bill_De Excel Worksheet Functions 12 April 25th 06 02:22 AM
Urgent date/scheduling calc needed jct Excel Worksheet Functions 3 February 24th 06 01:36 AM
Hyperlink problem to cell in same workbook stainless Excel Worksheet Functions 4 November 16th 05 08:10 AM
Hyperlink problem to cell in same workbook stainless Excel Discussion (Misc queries) 1 November 15th 05 04:53 PM
enter a time into a cell, have the cell show two times the entry johnp Excel Worksheet Functions 3 May 2nd 05 12:08 AM


All times are GMT +1. The time now is 03:47 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"