Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Option Explicit
Sub testme() Dim myCell As Range Dim wks As Worksheet Set wks = ActiveSheet With wks For Each myCell In .Range("a1:g10").Cells If myCell.Value = "" Then 'do nothing Else .Hyperlinks.Add Anchor:=myCell, _ Address:="mailto:" & myCell.Value End If Next myCell End With End Sub Satish wrote: Hi Dave, Thanks for the reply ...the solution which you mentioned worked for me successfully.But the problem is , every time i has to type this formula on the adjacent cell and do it. But i need a solution for the emails to be hyperlinked in the range (A1: G10) using macro? Regards Satish -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create an email macro to auto fill the email? | Excel Discussion (Misc queries) | |||
can I copy a column of email addresses, paste into email address? | New Users to Excel | |||
Email addresses in Excel need to format for mass email | Excel Worksheet Functions | |||
Transfer Email addresses from spreadsheet to email address book | Excel Discussion (Misc queries) | |||
Move a Column of 500 Email Addresses into BCC Field of an Email | Excel Worksheet Functions |