Written by Allen Wyatt (last updated June 19, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
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 2021. You can find a version of this tip for the older menu interface of Excel here: Getting Rid of All Hyperlinks.
Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!
When you copy information from a Web page and paste it into a worksheet, you can end up with more than you bargained for. ...
Discover MoreIn Excel, a hyperlink consists of two parts: the text displayed for the link and the target of the link. You can use a ...
Discover MoreInserting a hyperlink into a workbook that is shared with others is not possible in Excel. Here's what you can do about it.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-06-19 10:21:02
J. Woolley
You can also click Ctrl+A to Select All, then right-click and pick Remove Hyperlinks. But neither this nor the Tip's macros will affect formula cells that contain the built-in HYPERLINK function or My Excel Toolbox's SuperLink function (after recalc). See https://sites.google.com/view/MyExcelToolbox/
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 © 2025 Sharon Parq Associates, Inc.
Comments