Triggering event on hyperlink notifying user before redirecting
I assume you are talking about a hyperlink in an excel document. You can make a macro in vba and put the name of the macro in the hyperlink where the link address would normally go. The macro will be fired when you hover the mouse pointer over the link.
=IFERROR(HYPERLINK(MyMouseOverEvent(),"Click here"), "Click here")
|