Hi
I found a trick here to link to a chart worksheet in excel. I have modified it as below:
But there are about forty charts and fifty or so links - a few link to the same chart. Is there any way of doing something like this:
Chris
I found a trick here to link to a chart worksheet in excel. I have modified it as below:
Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Select Case Target.TextToDisplay
Case "NPS Overall satisfaction TTW"
Sheets("NPS by PMU").Select
Case "NPS Overall satisfaction WNY"
Sheets("NPS by PMU").Select
Case "NPS Overall satisfaction SEY"
But there are about forty charts and fifty or so links - a few link to the same chart. Is there any way of doing something like this:
Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Select Case Target.TextToDisplay
Case "NPS Overall satisfaction TTW" or "NPS Overall satisfaction WNY"
Sheets("NPS by PMU").Select
Case "NPS Overall satisfaction SEY"
Chris