Hi,
I'm trying to access a hyperlink in VBA. The full link is held in a cell in sheet 1. I'm having trouble getting the last line of my code to work. any help would be appreciated. thanks.
I'm trying to access a hyperlink in VBA. The full link is held in a cell in sheet 1. I'm having trouble getting the last line of my code to work. any help would be appreciated. thanks.
Code:
Sub OpenReport()
Dim Link As String
Link = Range("Full.Link").Value
Worksheet(1).FollowHyperlink Link
End Sub