Skip to main content

Hyperlinks.Add method

Adds a hyperlink to the specified range or shape.

Syntax

expression.Add (Anchor, Address, SubAddress, ScreenTip, TextToDisplay)

expression A variable that represents a Hyperlinks object.

Parameters

Name Required/Optional Data type Description
Anchor Required Object The anchor for the hyperlink. Can be either a Range or Shape object.
Address Required String The address of the hyperlink.
SubAddress Optional Variant The subaddress of the hyperlink.
ScreenTip Optional Variant The screen tip to be displayed when the mouse pointer is paused over the hyperlink.
TextToDisplay Optional Variant The text to be displayed for the hyperlink.

Return value

A Hyperlink object that represents the new hyperlink.

Remarks

When you specify the TextToDisplay argument, the text must be a string.

Example

This example adds a hyperlink to cell A1.

With Worksheets(1)
    .Hyperlinks.Add Anchor:=.Range("A1"), _
    Address:="https://excelbaby.com", _
    ScreenTip:="ExcelBaby Web Site", _
    TextToDisplay:="ExcelBaby"
End With

This example adds an email hyperlink to cell A2.

With Worksheets(1)
    .Hyperlinks.Add Anchor:=.Range("A2"), _
    Address:="mailto:[email protected]?subject=hello", _
    ScreenTip:="Contact us today", _
    TextToDisplay:="Contact us"
End With

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>