Hyperlinked Vlookup

Henwelder

New Member
Joined
Jan 23, 2012
Messages
10
Hi There,

I have a spreadsheet which has a front page that looks up a name and returns values against that name from a vast second tab. What I would like to do is once I have selected a name and it shows the values, hyperlink these values so that if the user clicks on the number it takes them to the relevant box in the second tab. So they can change the value if they need to easily.

I'm using the following formula: =HYPERLINK(VLOOKUP(E2,AccountAttractiveness!$A$4:$AJ$254,33,0),VLOOKUP(E2,AccountAttractiveness!$A$4:$AJ$254,33,0))

All I get however is cannot return specific value. Any ideas?

Thanks
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Here's one way...

=HYPERLINK("#AccountAttractiveness!AJ" & 3+MATCH(E2,AccountAttractiveness!$A$4:$A$254,0),
INDEX(AccountAttractiveness!$AJ$4:$AJ$254,MATCH(E2,AccountAttractiveness!$A$4:$A$254,0)))

You could simplify the formula if you want to use a helper cell to hold the Match formula result.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,670
Messages
6,120,831
Members
448,990
Latest member
rohitsomani

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