Hyperlink little problem....

matthewjapp

Board Regular
Joined
May 14, 2007
Messages
115
Hi there..

I use the code below to jump to a report based on clicking a hyperlink in a master page

If Target.Range.Address = "$A$10" Then
Application.ScreenUpdating = False
Sheets("Scotland").Visible = True
Sheets("Scotland").Select
Sheets("Dump 1").Visible = False
Sheets("Dump 2").Visible = False
Sheets("Pivots").Visible = False
Application.ScreenUpdating = True
Exit Sub
End If


The problem I have is that not every target sheet is the same as the value in (in this example) $A$10.

Some of the sheets are named differently, but there's too much code built around other processes which makes it a whole load of work to rename the sheet to the name in the range A1 (if that makes sense)

For the cells in A1 in the master I click where the value isn't the same as the sheet, I get error message 'reference is not valid'

Can any gurus out there help me with this little problem?

Many Thanks,

Matthew
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
According to that code there is no test of the value in $A$10 anyway. I think you need to explain more about what's going on, and what you require, and maybe show more relevant code.
 
Upvote 0
Thanks Glenn, I had a look at the code and realised that some of my cell references for the actual hyperlink was out of sync...schoolboy error on my part :o)
 
Upvote 0

Forum statistics

Threads
1,224,590
Messages
6,179,752
Members
452,940
Latest member
rootytrip

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