Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to hyperlink 800 documents to spreadsheet describing each docu | Excel Worksheet Functions | |||
How to create a min-max bar chart in excel 2007 ? | Charts and Charting in Excel | |||
how do I create a chart in excel 2007 with two axies | Charts and Charting in Excel | |||
How do I set up make the filename appear at the top of Excel docu. | New Users to Excel | |||
Anyone know how to create a hyperlink inside an Excel pie chart? | Charts and Charting in Excel |