Hyperlink to a Chart

Logos

New Member
Joined
Jan 13, 2002
Messages
2
Anyone know how to hyperlink to an Excel chart page? Not to a normal worksheet, which is pretty easy, but rather to those specialized chart pages the chart wizard creates.

Thanks much.

Logos
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi Logos,

Strictly speaking, a hyperlink will not link to a Chart sheet. The same effect can be accomplished via a simple macro. You didn't mention WHAT you want to hyperlink, so I will assume it is a Shape object for this example (textbox, rectangle, etc.). Simply right-click on the Shape, select Assign Macro, select New, and then insert

Charts("Chart1").Activate

into the macro that appears. It should then be something like

Sub AutoShape1_Click()
Charts("Chart1").Activate
End Sub

Now you should be able to click on the Shape and go directly to the chart.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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