Question: could you please say a few words about how to use a follow
hyperlink event?
I know how to create a Sub Procedure in the VBE, and I know how to assign
the procedure to a command button. But how do you "follow" a "hyperlink
event?"
The followhyperlink method is availabel in xl2000 and later.
right click on the sheet tab and select view code
At the top of the module,
in the left dropdown, select WorkSheet
In the righ dropdown select followhyperlink
Private Sub FollowHyperLink(byVal Target as hyperlink)
if hyperlink.Address = "yourhyperlinkaddress" then
call MyMacro
End if
End Sub