Remarks

Each hyperlink is represented by a object.

Example

Use the property to return the Hyperlinks collection. The following example checks the hyperlinks on worksheet one for a link that contains the word Microsoft.

Visual Basic for Applications
For Each h in Worksheets(1).Hyperlinks If Instr(h.Name, "Microsoft") <> 0 Then h.Follow Next

Use the method to create a hyperlink and add it to the Hyperlinks collection. The following example creates a new hyperlink for cell E5.

Visual Basic for Applications
With Worksheets(1) .Hyperlinks.Add .Range("E5"), "http://example.microsoft.com" End With
Hyper Links Collection Object Hyperlinks Collection hyperlinks collection object hyperlinks?

See also: