Hyperlinking Data

acjc7602

New Member
Joined
Jun 17, 2005
Messages
13
I have 2 worksheets in one workbook.

I want to be able to link one cell of one sheet to data in the other sheet. For example...

My 2 worksheets are Addresses and Phone Numbers. I have one worksheet with Joe's name in Column A and then his address in column B. On the 2nd worksheet, I have Joe's name in column A and his phone number in column B. I want to be able to click Joe's name on the Address page and it hyperlink me to Joe's name on the Phone Number page.

The normal hyperlink option only takes me to the referenced cell so that if I sort the data in the Phone Numbers worksheet, the link takes me to the same cell instead of following Joe's name to a new cell that the data is now after the data sort.

Can anyone help me with linking the data instead of the cell? Thanks!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about something like
Code:
=hyperlink("#Phone_Number_Page!A"&match("Joe",Phone_Number_Page!A:A,0),"Joe")

Better, so you can simply enter a single formula and copy down: add a new column on your first sheet between A and B, and enter the following formula in cell B1
Code:
=hyperlink("#Phone_Number_Page!A"&match(a1,Phone_Number_Page!A:A,0),a1)
and copy down... then Hide column A.
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,702
Members
449,048
Latest member
81jamesacct

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