If you inherit worksheets from other people, you may find that some worksheets contain many, many hyperlinks. These hyperlinks are often automatically created by Excel as you import or enter information in the worksheet. (I see them appear all the time when I paste information into a worksheet that was copied from a web page somewhere.)
If you want to delete these hyperlinks, you can do so by right-clicking on them and choosing Hyperlink | Remove Hyperlink from the Context menu. Doing this with dozens or hundreds of hyperlinks can quickly consume a huge amount of time. Accomplishing such a task quicker calls for the use of a macro.
The following macro quickly removes all hyperlinks in a worksheet, without affecting anything else it may contain:
Sub KillLinks1() Do Until ActiveSheet.Hyperlinks.Count = 0 ActiveSheet.Hyperlinks(1).Delete Loop End Sub
The macro works by stepping through the Hyperlinks collection and deleting anything that is located there. (The Hyperlinks collection allows access to all of the hyperlinks in a document. Convenient, huh?)
You can, if desired, make the macro even shorter, down to a single line:
Sub KillLinks2() ActiveSheet.Hyperlinks.Delete End Sub
Select the worksheet you want to affect, run one of these macros, and you just saved yourself tons of time!
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10782) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Getting Rid of All Hyperlinks.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Hyperlinks can be helpful in some worksheets but bothersome in others. Here's how to get rid of any hyperlinks you don't ...
Discover MoreNeed to add a hyperlink to a comment or note? It's easy to do by following the steps outlined in this tip.
Discover MoreWhen you insert into a cell a hyperlink that references a file on your system, the text displayed by default matches the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments