Does anyone know how to open a hyperlink without using your mouse?
I've tried a couple of macros but I can't get them to work. I am
inexperienced with Macros (especially the VBE ones) Any help would be
MUCH appreciated as it would save me a great deal of time.
Thank you,
Patrick
Tom Ogilvy - 19 Sep 2007 14:10 GMT
Look at the followhyperlink command.

Signature
regards,
Tom Ogilvy
> Does anyone know how to open a hyperlink without using your mouse?
> I've tried a couple of macros but I can't get them to work. I am
> inexperienced with Macros (especially the VBE ones) Any help would be
> MUCH appreciated as it would save me a great deal of time.
> Thank you,
> Patrick
Gary''s Student - 19 Sep 2007 14:16 GMT
Lets say there is a hyperlink in cell D7:
http://www.microsoft.com
then:
Sub hypergoer()
ActiveWorkbook.FollowHyperlink Address:=Range("D7").Value
End Sub

Signature
Gary''s Student - gsnu200745
> Does anyone know how to open a hyperlink without using your mouse?
> I've tried a couple of macros but I can't get them to work. I am
> inexperienced with Macros (especially the VBE ones) Any help would be
> MUCH appreciated as it would save me a great deal of time.
> Thank you,
> Patrick