Clickable email validation drop downd List

nesman10

New Member
Joined
Sep 24, 2009
Messages
1
Im trying to email directly from my worksheet by scrolling through a drop down list of emails that is in a validation List I set up.
I would like to choose the correct email and then click on the cell again whereon it opens a new Outlook email window to the selected email address.
I dont want to let the email stick, want the hyperlink to reset to general so that I can select another email next time and repeat the same.
I can paste vba code if needed.
Please Help.
Thanks Nesman10
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Evening

Andy Pope from the Ozgrid group suggest that

Private Sub Worksheet_Change(ByVal Target As Range)

' change D5 to appropriate cell
If Not Intersect(Target, Range("D5")) Is Nothing Then
MsgBox "Hyperlink to " & Target.Value
''' ThisWorkbook.FollowHyperlink Target.Value
End If

End Sub

Added to the event code to the worksheet

( http://www.ozgrid.com/forum/showthread.php?t=64697 )

HTH
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,215
Members
448,554
Latest member
Gleisner2

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