hyperlink with a vllookup??

alanwagen

New Member
Joined
May 18, 2005
Messages
13
What is wrong with this??

=HYPERLINK(("mailto:")&("'VLOOKUP($B$7,ess,14,FALSE"),"E-mail me")

Thanks :oops:
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try it without the quotes around the vlookup...

Code:
=HYPERLINK(("mailto:")&VLOOKUP($B$7,ess,14,FALSE),"E-mail me")
 
Upvote 0
The result of your VLOOKUP will be placed in the "TO:" portion of your e-mail. So, your vlookup should return something like
  • jim_smith@xyzcorporation.com
.

Try adjusting your vlookup (and/or your ess range) accordingly.
 
Upvote 0
hmm...

Code:
=HYPERLINK(("mailto:")&VLOOKUP($B$7,ess,14,FALSE),"E-mail me")

works for me. Are you sure you copied this formula correctly?

As another check, does =VLOOKUP($B$7,ess,14,FALSE) return the correct e-mail address?
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,817
Members
449,049
Latest member
cybersurfer5000

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