Open In App

How to Remove Hyperlinks in Excel? Different Methods

Last Updated: 06 Dec, 2023

I

Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

The HYPERLINK function generates a shortcut that opens a document saved on a server or the Internet or moves to another position in the existing workbook. When you click a cell that includes a HYPERLINK function, Excel moves to the specified URL or displays the file. There are many ways to remove the Hyperlink from Excel as discussed below:

Syntax

The syntax for a hyperlink function is as follows

HYPERLINK(link_location, [friendly_name])

Difference between Clear Hyperlinks and Removed Hyperlinks

  1. Clear Hyperlinks: The hyperlinks in the selected cells will be deleted. The formatting will not be cleared. 
  2. Remove Hyperlinks: The hyperlinks and formatting in the chosen cells should be removed.

How to Remove Hyperlinks in Excel

You can eliminate a single hyperlink, or many hyperlinks in one go, disable automatic hyperlinks, and disable the need to use Ctrl to follow a hyperlink.

This article will provide you with different methods to remove the hyperlinks in Excel.

How to Remove Hyperlinks in Excel Using the Menu Option

To remove a hyperlink but keep the text, simply right-click on the cell with the hyperlink and click the ” Remove Hyperlink” option.

Click on Remove Hyperlink.

 

In conclusion, you can go through the procedures again and remove hyperlinks from additional cells. Furthermore, you may use this procedure to delete hyperlinks from both cells by selecting them together.

Delete all hyperlinks in two steps :

Step 1: Select the entire column.

Select the entire column by clicking on a single cell and pressing “Ctrl+ Space”.

Step 2: Select “Remove Hyperlinks”.

Right-click on any selected cell and select “Remove hyperlink” from the context menu.

All the hyperlinks are removed from the column.

How to Remove Hyperlink in Excel by Edit Hyperlink Window

Follow the below steps to remove hyperlinks using Window

Step 1: Select the target cell with the right mouse button.

Step 2: Then select “Edit Hyperlink” from the drop-down menu.

Step 3: Press the “Remove Link” button in the “Edit Hyperlink” window. Keep in mind that the hyperlink in the “Address” text box should not be empty. Otherwise, the “OK” button will be inactive.

Click on Edit Hyperlink.

 

The pop-up will vanish as soon as you click the “Remove Link” button. In addition, the cell’s hyperlink has been erased. Unlike the previous way, you cannot delete the hyperlinks for various cells at the same time. To remove the hyperlink, select it and then press the Delete key.

How to Remove Hyperlink in Excel Using the Toolbar

Follow the below steps to remove hyperlinks from the Toolbar:

Step 1: Choose the desired cell. To pick a cell, use the arrow keys on your keyboard or click and hold the mouse button.

Step 2: Next, click the “Clear” button on the toolbar.

Step 3: Then there are 2 choices related to hyperlinks in the drop-down menu.

Step 4: The hyperlink will be erased from the cell if you select “Clear Hyperlinks” from the menu. The format, though, will not change. A little button will also be shown close to the actual cell. When you click the button, a menu with two alternatives appears. You get to choose whether or not to exit the format at this point.

Step 5: The hyperlink will be deleted asap if you select “Remove Hyperlinks” from the menu.

Select remove hyperlink from clear in Editing.

Simultaneously, the format will be phased out. The distinction between the two options beneath the “Clear” button is this. When you save the cell format, you can use this approach to select “Clear Hyperlinks”. You can even remove hyperlinks for several cells at once with this method. If you choose to leave the format alone, the formatting of all the cells will remain unchanged.

How to Remove Hyperlink  Using the HYPERLINK function

If you used the HYPERLINK function to establish the hyperlink, you can remove it by following these steps:

Step 1: Choose the cell that contains the hyperlink.

Remove hyperlink using HYPERLINK FUNCTION.

Step 2: To copy the hyperlink, use “CTRL+C”.

select all the HYPERLINK cell.

Step 3: By using the Values paste option, right-click and paste.

Choose Paste option.

How to Delete all Hyperlinks in two Clicks

Follow the below steps to remove all hyperlinks at the same time in Excel 10 or greater versions:

Step 1: Click all cells with hyperlinks or select all cells by using “Ctrl+A”.

Step 2: Remove Hyperlinks by right-clicking and selecting Remove Hyperlinks.

We will advise you to be patient with Excel as it may glitch sometimes and not give you the desired output right away. It is good if you just close the window and reopen it.

How to Remove Hyperlink in Excel using VBA code

Users can also remove Hyperlinks from Excel using VBA code. VBA code helps us to remove Hyperlinks from the sheet or the entire workbook instantly. We can insert the below code on the VBA editor and run it. If you want to learn more about the VBA code then CLICK HERE.

Follow the below steps to Remove the Hyperlinks using the VBA code.

Step 1: In the Excel sheet with hyperlinks, Press  “ALT+F9” to open the VBA editor window.

Step 2: Now Click on Insert >- Insert “Module”.

Step 3: Write the below code into the newly inserted module and press F5 to run it.

Code to Remove Hyperlink from Active Sheet.

Sub RemoveHyperlinkfromactivesheet()

Activesheet.UsedRange.Hyperlink.Delete

End Sub

Code to Remove Hyperlink from Workbook. 

Sub RemoveHyperlinkfromActiveWorkbook()

Dim was as Worksheet

Dim rng as Range

Dim cell as Range

for each ws in  thisworkbook.worksheet

set rng = ws.UsedRange

For each cell in rng.cells

If cell.Hyperlink. count > 0 then

Cell.Hyperlink.Delete

end if

Next cell

Next ws

End sub

Note: Save the workbook as Macro-Enabled Workbook.

How to Disable Automatic Hyperlink in Excel

Follow the steps to stop your Excel from turning your links into hyperlinks

Step 1: Go to the File and select “Options”.

Step 2: Now click on “Proofing”.

Step 3: Select the “AutoCorrect” Option.

Step 4: Now Select “AutoFormat” as you type. And untick the first option which is “Internet and network path with hyperlink”. Click “OK”

Disable automatic creation of hyperlink.

FAQs on Hyperlink

What are Hyperlinks in Excel?

If our data starts with https:// or www. it is considered a hyperlink which is used to create a link within a worksheet linking to another location such as a website or different worksheet.

 It can also be used to refer to a specific cell within the same worksheet.

How we can change the display text of Hyperlinks in Excel?

Step 1: Select the cell containing a hyperlink.

Step 2: Right-click on the Selected cell and Click on “Edit Hyperlink”.

Step 3: In the “Edit Hyperlink” Dialog box click on the “Text to display” and modify the text.

Step 4: Click “Ok” to apply changes.

What is the Shortcut to Remove Hyperlinks in Excel?

Select the text containing the Hyperlink in Excel “Ctrl+A”.

Now press “Ctrl +Shift+F9″.

How we can insert the Hyperlink in Excel?

To insert a hyperlink in Excel Follow the below steps:
Step 1: Select the cell where you want to insert the Hyperlink.

Step 2: Right-click on the cell and select “Hyperlink” from the context menu.

Step 3: Now “Insert Dialog box” will open. You can add hyperlinks according to your choice.



I

News
Improve
Discuss
Do you want to advertise with us?Click here to know more

Editing Excel Macros in Excel

article_img
Excel Macro is a set of actions that can be recorded, saved, used multiple times. This feature saves us a lot of time when dealing with repetitive tasks and huge data sets. We can always make changes to an existing Macro in Excel. There are two ways to record and run macros: Excel Commands Excel Visual Basic for Applications(VBA).1. Copying a Macro Code We can reuse the existing macro code while creating new Macros. For example, if you have existing macros created using the record function, we can reuse the code to write new macros. To open the code follow the below steps: Select Tools --> Macros --> Visual Basic Editor. Copy code from the existing macros(use Command + C) and paste(use Command + V) in the new macro2. Renaming a Macro Follow the below steps to rename a Macro in Excel: Select Tools --> Macros --> Visual Basic Editor. Select name on the left plane.Edit the name.3. Deleting a Macro Follow the below steps to delete a macro in Excel: Select Tools --> Macros --> Macros... Select the macro to be deleted. Click on the minus(-) symbol at the bottom.Select yes to delete the macro.
Read More

Best Microsoft Excel High-Paying Jobs with Excel Skills in 2024

article_img
Are you ready to unlock a world of opportunities with Microsoft Excel? In today’s data-driven job market, mastering Excel is essential for launching a successful career, whether you're a fresher or an experienced professional. In this article, we will cover the high-paying Excel jobs available in 2024, including crucial roles like data analyst, business analyst, and many more. We'll explore the qualifications needed for these positions, along with salary estimations to help you understand your earning potential. Whether you’re looking for Excel jobs for freshers or seasoned professionals, we’ll also dive into options for Excel freelancing jobs and work-from-home jobs in Excel. Equip yourself with the knowledge to excel in your career and take the first step toward a lucrative future!Best Microsoft Excel High-Paying Jobs with Excel Skills in 2024Table of ContentWhy choose a career in ExcelWhy Excel Skills Are Essential for Your CareerEssential Excel Skills Required to Boost Your Resume Best Microsoft Excel High-Paying JobsFinancial AnalystsData AnalystAdministrative Assistant Accountants Project ManagersManagement ConsultantRetail Store ManagersBusiness Analyst Market Research A
Read More

Excel VLOOKUP Function - Excel Guide for Beginners

article_img
How to do Vlookup in Excel - Quick StepsPrepare Your DataEnter the VLOOKUP Formula >>Press EnterUse a Cell Reference for Flexibility Copy the Formula for Multiple RowsThe VLOOKUP function is one of the most widely used tools in Excel for looking up and retrieving data from a table. Whether you’re working with a single sheet or multiple workbooks, VLOOKUP allows you to search for a value in one column and return a related value from another. If you're new to Excel or still getting the hang of formulas, this guide is for you. We will cover everything from the basics of how VLOOKUP works to practical examples that show how to search data across sheets, troubleshoot common issues, and master the VLOOKUP formula for any task.Excel VLOOKUP FunctionWhat is the VLOOKUP Function in ExcelThe term VLOOKUP stands for Vertical Lookup. It is designed to search for a specific value in the first column of a table (lookup column) and retrieve corresponding data from a different column in the same row.Syntax of VLOOKUP FormulaVLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])Arguments:1. lookup_value: The value you want to search for (e.g., a specific ID, name, or product code).
Read More

AI in Excel: Top 20 Excel AI Tools in 2025 (Free/Paid)

article_img
The integration of AI in Excel is transforming the way professionals manage, analyze, and visualize data. Whether you're handling large datasets, performing financial analysis, or automating repetitive tasks, AI-powered tools can significantly improve efficiency and accuracy. In 2025, advanced Excel AI tools are making complex tasks easier by offering features like data cleaning, predictive analytics, smart automation, and AI-driven insights.In this guide, we’ve gathered a list of the top 20 Excel AI tools for 2025 that are reshaping how users interact with Excel.Table of ContentBest AI Tool in Excel: Top Picks for 2025Top 10 Free Excel AI Tools in 2025Top 10 Excel AI ToolsAI in Excel: OverviewIn Excel, an AI tool (Artificial Intelligence tool) refers to an add-in or extension that leverages artificial intelligence to enhance your spreadsheet experience. These tools can automate tasks, improve data analysis, and generally make you more productive.Excel has always been a powerful tool for data analysis, but with the integration of AI tools, it has transformed into a smarter, more intuitive platform.Best AI Tool in Excel: Top Picks for 2025Explore the below AI tools designed for auto
Read More

How to Compare Two Columns in Excel : Easy and Quick Methods

article_img
In the world of data analysis, knowing how to compare two columns in Excel is a fundamental skill that can unveil valuable insights and ensure data accuracy. If you're looking to spot differences, find duplicates, or identify similarities, mastering Excel's compare columns functionality is key. This article will walk you through effective methods on how to compare two columns in Excel, exploring techniques to streamline your workflow and make informed decisions. By the end, you'll be equipped with the knowledge to confidently manage and analyze your data using Excel compare two columns features. Let's explore and learn the power of data comparison!How to Compare Two Columns in ExcelTable of ContentWhy Compare Two Columns in ExcelHow to Compare Two Columns in ExcelCompare Two Columns in Excel using Conditional FormattingHighlight Unique DataCompare Two Columns in Excel Using Equals OperatorCompare Two Columns in Excel Using the IF Condition Using the Lookup Function to Compare Two ColumnsWhy Compare Two Columns in ExcelExcel is a versatile tool that stores data and manipulates data for better decision-making. We are required to compare Excel columns data for the following reasons:To
Read More

How to Find Correlation Coefficient in Excel: 3 Methods Explained

article_img
Finding the correlation coefficient in Excel is a fundamental skill for anyone working with data analysis, statistics, or business insights. It helps you understand the relationship between two sets of data, indicating whether they are positively or negatively correlated. In this article, you will learn the multiple methods to find the correlation coefficient in Excel, including using the CORREL function, Data Analysis ToolPak, and PEARSON function. These methods apply to Excel 2010, 2013, 2016, 2019, and Office 365. Table of ContentWhat is Correlation in Excel How to Find the Correlation Coefficient in Excel Different Ways to Calculate the Correlation Coefficient in ExcelMethod 1: Using CORREL FunctionMethod 2: Using Data AnalysisMethod 3: Using PEARSON Function Computing Correlation Coefficient in ExcelHow to Troubleshoot Common IssuesPractical Uses of Correlation CoefficientsWhat is Correlation in Excel Correlation is a statistical measure that describes the relationship between two or more variables. It indicates how one variable changes when another variable changes. Correlation can help identify patterns or associations in data and is used widely in fields such as finance, s
Read More

4 Methods to Calculate Percent Change in Excel

article_img
Calculating percent change in Excel is a valuable skill for analyzing data trends and measuring growth or decline. This guide will show you four easy methods to calculate percent change, whether you’re comparing sales data, financial metrics, or other datasets. You’ll learn to use simple formulas such as (New Value - Old Value) / Old Value and how to format results as percentages. Additionally, we’ll cover using percent change with absolute references, handling negative changes, and leveraging built-in Excel functions to automate calculations.By mastering these techniques, you can quickly gain insights and make data-driven decisions with confidence. Follow along to explore each method step-by-step and see how it applies to real-world scenarios.Calculate Percentage Change in Excel Table of ContentWhat is Percent Change in ExcelExcel Percent Change FormulaPercentage Change Equation in ExcelPercent Change CalculatorHow to Calculate Percent Change in ExcelHow to Change the Number of Decimal PlacesCalculating Percent Increase and Decrease in ExcelHow to Calculate a Percentage Increase in ExcelHow to Calculate a Percentage Decrease in ExcelCalculating Absolute Value of Percent Change Tip
Read More

How to Wrap Text in Excel Automatically and Manually - 3 Easy Methods

article_img
How to Wrap Around Text in Excel - Quick StepsSelect the cell(s).Go to Home >> Click Wrap Text.Adjust the row height if needed.Wrapping text in Excel is a simple yet essential feature that ensures your data is displayed clearly and fits neatly within each cell. When working with long entries, such as names, addresses, or descriptions, text may overflow into adjacent cells or become hidden. This guide will show you how to wrap text in Excel, making your data more readable and organized. Whether you're managing reports, creating tables, or formatting large datasets, wrapping text improves presentation and helps maintain a professional look.How to Wrap Text in ExcelTable of ContentWhat Is Text Wrapping in Excel?How to Wrap Text in Excel Automatically (Windows & Mac)Method 1: Wrap Text Using the Ribbon (Wrap Text Button)Method 2: Wrap Text Using Format CellsMethod 3: Using the Keyboard ShortcutHow to Wrap Text in Excel Manually with Line BreaksHow to Unwrap Text in Excel using Right ClickTroubleshooting Common Text Wrapping IssuesWhat Is Text Wrapping in ExcelText wrapping in Excel adjusts the way text is displayed in a cell. Instead of text overflowing into adjacent cells or
Read More

How to Delete Blank Rows in Excel: 7 Methods Explained

article_img
How to Remove Empty Rows in Excel- Quick StepsSelect the data range.Press Ctrl + G >> Click Special >>Choose Blanks >> Click OK.Right-click on any blank cell >>Click Delete >>Choose Entire Row >> Click OK.Deleting blank rows in Excel is crucial for maintaining clean, organized, and easy-to-analyze spreadsheets. Blank rows can cause issues with data analysis, disrupt sorting and filtering, and make your sheet appear cluttered. This guide will walk you through quick and effective methods to identify and remove blank rows, helping streamline your workflow and improve data accuracy. Whether you’re working with large datasets or small tables, learning how to eliminate blank rows in excel ensures your data remains consistent and ready for analysis.Note: Never remove blank rows by simply selecting blank cells and deleting them without caution, as this can lead to unexpected data shifts and potential errors in your Excel spreadsheet.Table of Content7 Easy Methods to Eliminate Blank Rows in ExcelMethod 1: How to Remove Empty Rows in Excel (Single Row)Method 2: How to Remove Multiple Blank Rows in Excel using Filter OptionMethod 3: Shortcut to Remove Multi
Read More

Linear Interpolation in Excel - 10 Methods with Example

article_img
Linear interpolation in Excel is a powerful method for estimating unknown values between two data points within a dataset. Imagine working with financial models, engineering calculations, or scientific data where you need to predict or fill in missing values with precision. Linear interpolation allows you to bridge the gap between known values by calculating intermediate points based on a straight-line relationship. Using formulas or built-in functions, Excel makes it easy to perform these calculations and apply them to a range of data. This guide will walk you through the step-by-step process of performing linear interpolation in Excel, complete with practical examples to help you master this essential technique for data analysis.Linear Interpolation in ExcelTable of ContentWhat is Linear InterpolationHow Linear Interpolation WorksLinear Interpolation FormulaHow To Perform Linear Interpolation in Microsoft ExcelPerform Linear Interpolation in Excel with the Mathematic FormulaPerform Linear Interpolation Using Excel FORECAST.LINEAR FunctionHow To Perform Linear Interpolation by Creating a Scatter Plot with TrendlineDynamic Range Interpolation with FORECAST, OFFSET, and MATCHUsing t
Read More
three90RightbarBannerImg