User worked 'jump to'?

dantheram

Board Regular
Joined
Aug 27, 2010
Messages
192
Office Version
  1. 365
Platform
  1. Windows
Can someone please help em to create a function where the user of my workbook can click on a section number and then the sheet automatically 'jumps' to that section?

So, column A has the following

1.1
1.2
1.3
1.4
etc
etc

My tool should simple have a list of column A and when the user chooses a section the sheet jumps to it.

Is this possible?

Many thanks,

Dan
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Can't you use Hyperlinks (Insert|Hyperlink)? The displayed text can be different from the actual link reference.
 
Upvote 0
Something like this should work [of course you would have to customize for your needs]:

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Select Case Target.Value
        Case "1.1"
            Range("B1").Select
        Case "1.2"
            Range("C1").Select
        Case "1.3"
            Range("D1").Select
        Case "1.4"
            Range("E1").Select
    End Select
End Sub
 
Upvote 0
I would recommend using the Hyperlink() function. To umop to cell A10 of teh current sheet, use:
Code:
 =HYPERLINK("#a10","link")
or to jump to that cell on shet 2 use
Code:
=HYPERLINK("#sheet2!a10","link")
 
Upvote 0
Can't you use Hyperlinks (Insert|Hyperlink)? The displayed text can be different from the actual link reference.


The trick to this is the use of the pound sign (#) to indicate to Excel that it's a hyperlink locally within this workbook, and not a URL or a file location.
 
Upvote 0
I would recommend using the Hyperlink() function. To umop to cell A10 of teh current sheet, use:
Code:
 =HYPERLINK("#a10","link")
or to jump to that cell on shet 2 use
Code:
=HYPERLINK("#sheet2!a10","link")

The one major benefit of using teh Yperlink() function versus an embedded Hyperlink Object is that as a function, you can perform calculations. Here is an example of a formula that will automatically update to teh proper location as rows or columns are added or deleted in teh worksheet:
Code:
=HYPERLINK("#"&CELL("address",A21),"link")
 
Upvote 0
I'm aware of that, but I don't see the relevance to what I posted.

I figured you did. And I didn;t mean to imply differently. I was simply offering some additional info to the OP. Maybe I'm wrong, but from your own post, it didn;t seem clear to me that anything special would be needed to make it work...
 
Upvote 0
But if i have a hyperlink to each one i need a great long list of sections, is there anyway i can get the sections in a drop down?
 
Upvote 0
I figured you did. And I didn;t mean to imply differently. I was simply offering some additional info to the OP. Maybe I'm wrong, but from your own post, it didn;t seem clear to me that anything special would be needed to make it work...

Nothing special is required with Insert|Hyperlink, which I suggested. You merely select 'Place in this document' and fill in the boxes. But I agree that the HYPERLINK function provides more flexibility.
 
Upvote 0

Forum statistics

Threads
1,224,598
Messages
6,179,820
Members
452,946
Latest member
JoseDavid

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