Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
After pasting a text file - I want to make an entire column of e-mail
addresses live. I seem to recall having to use a third-party macro in an earlier release - I have office 2007/vista. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can use this macro for column B
Sub test() For Each myCell In Columns("B").Cells.SpecialCells(xlCellTypeConstant s) If myCell.Value Like "?*@?*.?*" Then ActiveSheet.Hyperlinks.Add Anchor:=myCell, _ Address:="mailto:" & myCell.Value, TextToDisplay:=myCell.Value End If Next End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "thd3" wrote in message ... After pasting a text file - I want to make an entire column of e-mail addresses live. I seem to recall having to use a third-party macro in an earlier release - I have office 2007/vista. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
send mails from excel | Excel Discussion (Misc queries) | |||
i am not getting any e mails when clicking rec/send how do i re | Excel Discussion (Misc queries) | |||
Sort names and e-mails from one column | Excel Discussion (Misc queries) | |||
How to copy mails to Excel | New Users to Excel | |||
I'm not getting e-mails after installing the program | Setting up and Configuration of Excel |