Hyperlinks

waderw

Board Regular
Joined
Apr 26, 2002
Messages
85
Anyone know if it possible to run modules/macros using hyperlinks?

Thanks,
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
no only if you were to link the hyperlink to another workbook and when that workbook opened it autoran a macro otherwise I'm pretty sure thats a no

i think you can only attach macros to objects
 
Upvote 0
On 2002-05-02 19:50, waderw wrote:
Anyone know if it possible to run modules/macros using hyperlinks?

Thanks,

You can run a macro if from a hyperlink if
you are using xl2000.
Use the sheets FollowHyperlink Event
In the sheet with the Hyperlinks you can do
something like this;

<pre/>
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Select Case Target.Parent

Case "Sheet3!A1"
Call MyMacro1
Case "Sheet3!A2"
Call MyMacro2
End Select
End Sub
</pre>

The Target.Parent is the Name of the
Hyperlink that you click.
 
Upvote 0

Forum statistics

Threads
1,214,397
Messages
6,119,273
Members
448,883
Latest member
fyfe54

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top