VLOOKUP removing HYPERLINK

mistahmistah

New Member
Joined
May 8, 2014
Messages
21
Hi y'all,

I'm trying to put together an error response calculator with hyperlinks and having a little trouble

The links live in column b beginning at row 5 and below along with error codes in column a. For example,
23456789Shortage of Data

<tbody>
</tbody>

B2 is where I would like the formula to be clickable using a vlookup, unless there's another recommendation, when the needed error code is entered into B1. For testing sake please use facebook.com

Thank you!
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
If you can add a helper column with the link in it (i.e. www.facebook.com) to your data from C5 down, you can use this:
Code:
=HYPERLINK("http://" & IFERROR(INDEX($A$5:$C$13,MATCH(B1,$A$5:$A$13,0),3),""),IFERROR(INDEX($A$5:$C$13,MATCH(B1,$A$5:$A$13,0),2),""))

Where:
A5:A13 = your range of codes to match
B5:B13 = your range of descriptions
C5:C13 = your range of links (the helper column)

Hope this helps,
Dan
 
Upvote 0

Forum statistics

Threads
1,215,159
Messages
6,123,351
Members
449,097
Latest member
thnirmitha

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