
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
How to Convert URL Text to Clickable Hyperlink in Excel?
Have you ever tried to convert a text to a hyperlink in Excel? If you are facing any difficulty, this article will help you complete the task. The HYPERLINK function creates a shortcut that jumps to another location in the current workbook or opens a document stored on a network server, an intranet, or the Internet.
When you click a cell that contains a HYPERLINK function, Excel jumps to the location listed or opens the document you specified. If you try to convert the text to a hyperlink in Excel using the direct menu from the right-click menu, then it can be a boring and old process. And also, if the texts are spread out on the sheet at different locations, i.e., not in the form of a list, then it can be a time-consuming process to complete our task. We can solve this problem in a quicker way using the VBA application. Read this tutorial to learn the process of converting URL text to a clickable hyperlink in Excel.
Converting URL Text to Clickable Hyperlink in Excel
Here we will first open the VBA application and use the VBA code to convert the URLs to hyperlinks. Let us look at a simple procedure for converting URL texts to clickable hyperlinks in Excel using the VBA application.
Step 1
Let us consider an Excel sheet where we have a list of URL texts similar to the below image.

Now right-click on the sheet name and select View Code to open the VBA application.
Right-click -> View Code
Step 2
Click "Insert" and select "Module," then type the following program code in the textbox −
Program
Sub ConvertToHyperlinks() 'Updated By Nirmla Dim Rng As Range Dim WorkRng As Range On Error Resume Next xTitleId = "Converrt Hyper Link" Set WorkRng = Application.Selection Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8) For Each Rng In WorkRng Application.ActiveSheet.Hyperlinks.Add Rng, Rng.Value Next End Sub

Step 3
Then save the sheet as a macro-enabled workbook, click F5 to run the code, select the range of texts you want to convert to hyperlinks, and click OK, as shown in the below image.
Save > F5 > Select range > Ok

Conclusion
In this tutorial, we used a simple example to demonstrate how you can convert text to hyperlinks in Excel.
- Related Articles
- How to Convert Hyperlink to Plain Text in Excel?
- How to Convert File Path to Hyperlink in Excel?
- How to add hyperlink to comment in Excel?
- How to Convert Text in Text Box to Cell Content in Excel?
- How to Convert Formula to Text String in Excel?
- How to Convert Text Strings to Formulas in Excel?
- How to Convert HTML to Text in Cells in Excel?
- How to change or convert number to text in Excel?
- How to change or convert text to number in Excel?
- How to Convert Date Stored as Text to Date in Excel?
- How to Convert Scientific Notation to Text or Number in Excel?
- How to create hyperlink in a Tkinter Text widget?
- How to Convert Text Datetime Format to Real Datetime Format in Excel?
- How to Convert Text String to Proper Case with Exceptions in Excel?
- How to check if hyperlink exists in a worksheet in Excel?
