Hyperlinks

SantasLittleHelper

Board Regular
Joined
Nov 25, 2016
Messages
77
I have a list on a sheet with lots of different names of organisations.

E.g.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Cell Value[/TD]
[TD]Cell[/TD]
[/TR]
[TR]
[TD]ORGANISATION 1[/TD]
[TD]A1[/TD]
[/TR]
[TR]
[TD]ORGANISATION 2[/TD]
[TD]A2[/TD]
[/TR]
[TR]
[TD]ORGANISATION 3[/TD]
[TD]A3[/TD]
[/TR]
</tbody>[/TABLE]

Is it possible to have a hyperlink so that when the user clicks on the Cell Value, it takes them to a different sheet within the workbook where the cell value is the same?

E.g. User Clicks on 'ORGANISATION 1' (A1) in Sheet1 which takes them to the cell containing 'ORGANISATION 1' (B1) in Sheet 2
[TABLE="width: 500"]
<tbody>[TR]
[TD]Cell Value[/TD]
[TD]Cell[/TD]
[/TR]
[TR]
[TD]ORGANISATION 1[/TD]
[TD]B1[/TD]
[/TR]
[TR]
[TD]ORGANISATION 2[/TD]
[TD]B2[/TD]
[/TR]
[TR]
[TD]ORGANISATION 3[/TD]
[TD]B3[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
To create the hyperlink then select the cell you want to be the hyperlink and press CTRL & K

This will bring up the "Insert Hyperlink" dialog box.

On the left hand side select "Place in this Document"

This will allow you to select a sheet from the workbook, you can enter the cell reference manually in the text box above it (or you can define names etc.)

HTH
 
Upvote 0
Thanks for this.

I know how to Hyperlink but as I have a list of approximately 50 organisations, I am wondering if there is a way around manually setting the hyperlink for each cell?
 
Upvote 0
Hi
With first name in A1, place this formula in B1 and copy down

=HYPERLINK("#Sheet2!"&ADDRESS(MATCH(A1,Sheet2!B:B),2),A1)
 
Upvote 0
you could also try this in cell A1 copied down

=HYPERLINK("#Sheet2!"&CELL("address",B1),Sheet2!B1)
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,876
Members
452,363
Latest member
merico17

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