Hyperlinks

waderw

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

Thanks,
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
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,402
Messages
6,119,304
Members
448,886
Latest member
GBCTeacher

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