Hello,
Hope you are well.
I am trying to navigate between sheets using named ranges I set up. E.g. I have a Sheet1 named Polar and Sheet2 named Inventory. When I click on a home button on the Inventory sheet it should navigate to the Polar sheet using the named range "home" that is set up for cell Polar!A1.
I have written code but it does not work from the Inventory sheet (it does work in the Polar sheet):
<code>
<code>
Sub navigateSh()
'navigate to polar sheet using named range "home"
Range(Names("home")).Activate
End Sub
</code></code>
Can someone please help me to apply this idea to my code?
P.S. The reason I use named ranges is for in case the user changes the sheet names.
Regards
Herman
Hope you are well.
I am trying to navigate between sheets using named ranges I set up. E.g. I have a Sheet1 named Polar and Sheet2 named Inventory. When I click on a home button on the Inventory sheet it should navigate to the Polar sheet using the named range "home" that is set up for cell Polar!A1.
I have written code but it does not work from the Inventory sheet (it does work in the Polar sheet):
<code>
<code>
Sub navigateSh()
'navigate to polar sheet using named range "home"
Range(Names("home")).Activate
End Sub
</code></code>
Can someone please help me to apply this idea to my code?
P.S. The reason I use named ranges is for in case the user changes the sheet names.
Regards
Herman