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.
Sample Code
By using VBA to update hyperlinks instead of doing so manually, you can help ensure the accuracy and consistency of your links. To do this, follow these steps:
- On the Tools menu, point to Macro, and then click Visual Basic Editor.
- In the Project window of the Visual Basic Editor, right-click the Excel object that you want to update (this can be a single sheet in your workbook, the entire workbook, or the project), point to Insert, and then click Module.
- Type the following code in the module
NOTE: Set the oldtext variable to match at least some portion of the hyperlink text that you want to update or change. (This is the text from the Text To Display box of the Insert Hyperlink wizard.) Set the newtext variable to the updated hyperlink text.
Sub HyperLinkChange()
Dim oldtext As String
Dim newtext As String
Dim h As Hyperlink
' These can be any text portion of a hyperlink, such as ".com" or ".org".
oldtext = "http://www.microsoft.com/"
newtext = "http://www.msn.com/"
' Check all hyperlinks on active sheet.
For Each h In ActiveSheet.Hyperlinks
x = InStr(1, h.Address, oldtext)
If x > 0 Then
If h.TextToDisplay = h.Address Then
h.TextToDisplay = newtext
End If
h.Address = Application.WorksheetFunction. _
Substitute(h.Address, oldtext, newtext)
End If
Next
End Sub
- Press ALT+F11 to switch to Excel.
- On the Tools menu, point to Macro, and then click Macros.
- In the Run Macro dialog box, click HyperlinkChange, and then click Run.
- Check your hyperlinks to be sure they have been updated.
Depending on where you place your code module, you can either update all the hyperlinks in the workbook or only on a specific sheet. If you notice that some of your links are not updated, check to see whether your module is associated with the entire workbook or only with one sheet.