Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a column of email addresses, but they are static. How do I turn them
into active cells that when clicked take me to a new email message in Outlook? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Mark the range of cells with the email addresses. EditPaste as Hyperlink -- Regards Roger Govier "Jerimoth" wrote in message ... I have a column of email addresses, but they are static. How do I turn them into active cells that when clicked take me to a new email message in Outlook? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this macro:
Sub email() Dim r As Range For Each r In Selection ActiveSheet.Hyperlinks.Add Anchor:=r, _ Address:="mailto:" & r.Value, TextToDisplay:=r.Value Next End Sub Just select the cells you want to convert and run the macro. -- Gary''s Student "Jerimoth" wrote: I have a column of email addresses, but they are static. How do I turn them into active cells that when clicked take me to a new email message in Outlook? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about using another column:
=hyperlink("mailto:" & a1,a1) and drag down. Jerimoth wrote: I have a column of email addresses, but they are static. How do I turn them into active cells that when clicked take me to a new email message in Outlook? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
make XL stop interpreting email addresses as highlighted links? | Excel Discussion (Misc queries) | |||
Need to Improve Code Copying/Pasting Between Workbooks | Excel Discussion (Misc queries) | |||
Count Position of Filtered TEXT cells in a column | Excel Worksheet Functions | |||
email addresses in cells | Excel Discussion (Misc queries) | |||
how do I make make my hyperlinks show the email address they are . | Excel Discussion (Misc queries) |