Hyperlink does not work when pasted or imported (271856)
The information in this article applies to:
- Microsoft Office Excel 2003
- Microsoft Excel 2002
- Microsoft Excel 2000
- Microsoft Excel for Windows 5.0
- Microsoft Excel X for Mac
- Microsoft Excel 98 Macintosh Edition
- Microsoft Excel 97 for Windows
This article was previously published under Q271856 SYMPTOMS When you paste or import text that looks like a hyperlink
into a cell, the hyperlink does not actually work but remains as a text entry.
If you type the same text into a cell by using the keyboard, Microsoft Excel
interprets the entry as an active hyperlink. CAUSE Microsoft Excel does not interpret these text values as
hyperlinks unless they are typed from the keyboard. WORKAROUND 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 MacroMicrosoft 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
Modification Type: | Minor | Last Reviewed: | 12/1/2005 |
---|
Keywords: | kbprb KB271856 |
---|
|