Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 4
Default How do you create a hyperlink to a chart within an Excel 2007 docu

I am creating a dashboard page to navigate to the sheets in a large Excel
2007 file. How do I create a hyperlink to a chart that is on a separate
worksheet? I cannot find a way to name it or create a cell reference so that
it appears in the list of linkable items in the Insert Hyperlink dialog box.
--
BC, Canada
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default How do you create a hyperlink to a chart within an Excel 2007 docu

A worksheet is the sheet with cells and rows and columns. Charts can be
embedded on a worksheet. You hyperlink to one of these charts by actually
hyperlinking to a cell under the chart, usually under the top left corner of
the chart. A chart sheet, on the other hand, has no cells, no data other
than the chart. You cannot create a hyperlink to a chart, but you can make a
VBA link that mimics one:

http://peltiertech.com/Excel/Hyperlinks.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Catherine D" wrote in message
...
I am creating a dashboard page to navigate to the sheets in a large Excel
2007 file. How do I create a hyperlink to a chart that is on a separate
worksheet? I cannot find a way to name it or create a cell reference so
that
it appears in the list of linkable items in the Insert Hyperlink dialog
box.
--
BC, Canada



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 4
Default How do you create a hyperlink to a chart within an Excel 2007

Hello Jon,

Thanks for your help. This works great for the first "link" but now how do
you repeat it for other "links" on the same worksheet? I tried to call the
sub "Worksheet_SelectionChange2" but that did not work.

(I am not a programmer!)

Thanks. Catherine
--
BC, Canada


"Jon Peltier" wrote:

A worksheet is the sheet with cells and rows and columns. Charts can be
embedded on a worksheet. You hyperlink to one of these charts by actually
hyperlinking to a cell under the chart, usually under the top left corner of
the chart. A chart sheet, on the other hand, has no cells, no data other
than the chart. You cannot create a hyperlink to a chart, but you can make a
VBA link that mimics one:

http://peltiertech.com/Excel/Hyperlinks.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Catherine D" wrote in message
...
I am creating a dashboard page to navigate to the sheets in a large Excel
2007 file. How do I create a hyperlink to a chart that is on a separate
worksheet? I cannot find a way to name it or create a cell reference so
that
it appears in the list of linkable items in the Insert Hyperlink dialog
box.
--
BC, Canada




  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default How do you create a hyperlink to a chart within an Excel 2007

Suppose the chart names are listed in B2:B5. This code will activate
whicheveer chaart name is clicked on. Private Sub
Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("B2:B5")) Is Nothing Then
On Error Resume Next
Charts(Target.Value).Activate
If Err.Number < 0 Then
MsgBox "No such chart exists.", vbCritical, _
"Chart Not Found"
End If
On Error GoTo 0
End If
End Sub

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______



"Catherine D" wrote in message
...
Hello Jon,

Thanks for your help. This works great for the first "link" but now how
do
you repeat it for other "links" on the same worksheet? I tried to call
the
sub "Worksheet_SelectionChange2" but that did not work.

(I am not a programmer!)

Thanks. Catherine
--
BC, Canada


"Jon Peltier" wrote:

A worksheet is the sheet with cells and rows and columns. Charts can be
embedded on a worksheet. You hyperlink to one of these charts by actually
hyperlinking to a cell under the chart, usually under the top left corner
of
the chart. A chart sheet, on the other hand, has no cells, no data other
than the chart. You cannot create a hyperlink to a chart, but you can
make a
VBA link that mimics one:

http://peltiertech.com/Excel/Hyperlinks.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Catherine D" wrote in message
...
I am creating a dashboard page to navigate to the sheets in a large
Excel
2007 file. How do I create a hyperlink to a chart that is on a
separate
worksheet? I cannot find a way to name it or create a cell reference
so
that
it appears in the list of linkable items in the Insert Hyperlink dialog
box.
--
BC, Canada






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to hyperlink 800 documents to spreadsheet describing each docu Coltten Excel Worksheet Functions 1 May 15th 08 07:58 PM
How to create a min-max bar chart in excel 2007 ? Junkyard Engineer Charts and Charting in Excel 5 December 30th 07 02:01 PM
how do I create a chart in excel 2007 with two axies ther00k Charts and Charting in Excel 1 December 21st 07 01:58 PM
How do I set up make the filename appear at the top of Excel docu. jwittrock New Users to Excel 2 August 15th 07 10:05 PM
Anyone know how to create a hyperlink inside an Excel pie chart? HyperChart Charts and Charting in Excel 2 February 6th 06 03:56 PM


All times are GMT +1. The time now is 06:48 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"