Hyperlink > Target.Range.Address

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

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,214,784
Messages
6,121,539
Members
449,038
Latest member
Guest1337

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