To convert cells that contain valid hyperlink text in Excel
to active hyperlinks, use one of the following methods.
Method 1: Edit the Hyperlink by Using the Keyboard
- Select a cell that contains a hyperlink that appears as
text.
- Press F2 and then press ENTER.
- Repeat steps 1 and 2 for each cell, as needed.
Method 2: Use a Macro
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
For additional information about how to use
the sample code in this article, click the following article number to view the
article in the Microsoft Knowledge Base:
173707
OFF97: How to Run Sample Code from Knowledge Base Articles
173707
OFF97: How to Run Sample Code from Knowledge Base Articles
Sub HyperAdd()
'
' Converts each text hyperlink selected into a working hyperlink
'
For Each xCell In Selection
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
Next xCell
'
'
End Sub