Private Sub Workbook_SheetBeforeRightClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)
If Target.Hyperlinks.Count Then
If Target.Hyperlinks(1).Address <> "" Then
Cancel = True
CreateObject("wscript.shell").SendKeys "{TAB}~"
Me.FollowHyperlink Target.Hyperlinks(1).Address
End If
End If
End Sub