Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Can anyone help me in writing a macro on how to create email link for the email addresses in a Range or Selection.As i am new to excel i am manually selecting each cell which is having email address , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If your data is in A1:A10 (say), you could add some formulas in B1:B10:
Put this in B1: =hyperlink("mailto:" & a1,"Click to send email") and drag down to B10 Satish wrote: Hi Can anyone help me in writing a macro on how to create email link for the email addresses in a Range or Selection.As i am new to excel i am manually selecting each cell which is having email address , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
in another column enter =HYPERLINK(D3&";") Change D3 for the cell you have the email "Satish" wrote: Hi Can anyone help me in writing a macro on how to create email link for the email addresses in a Range or Selection.As i am new to excel i am manually selecting each cell which is having email address , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. . |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for the reply, but can you help in writing a macro where i want
to do it for a range. Regards Satish On Dec 18, 8:04*pm, Dave Peterson wrote: If your data is in A1:A10 (say), you could add some formulas in B1:B10: Put this in B1: =hyperlink("mailto:" & a1,"Click to sendemail") and drag down to B10 Satish wrote: Hi * *Can anyone help me in writing amacroon how tocreateemaillink for theemailaddressesin aRangeorSelection.As i am new to excel i am manually selecting each cell which is havingemailaddress , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What does this mean?
I figured that a cell would contain a single email address. So each cell would require its own hyperlink. Satish wrote: Thanks for the reply, but can you help in writing a macro where i want to do it for a range. Regards Satish On Dec 18, 8:04 pm, Dave Peterson wrote: If your data is in A1:A10 (say), you could add some formulas in B1:B10: Put this in B1: =hyperlink("mailto:" & a1,"Click to sendemail") and drag down to B10 Satish wrote: Hi Can anyone help me in writing amacroon how tocreateemaillink for theemailaddressesin aRangeorSelection.As i am new to excel i am manually selecting each cell which is havingemailaddress , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. -- Dave Peterson -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Dave,
Yes each cell contains single email address.In a range, the cells which are having email address should be hyperlinked. Regards Satish On Dec 18, 10:47*pm, Dave Peterson wrote: What does this mean? I figured that a cell would contain a single email address. *So each cell would require its own hyperlink. Satish wrote: Thanks for the reply, but can you help in writing a macro where i want to do it for a range. Regards Satish On Dec 18, 8:04 pm, Dave Peterson wrote: If your data is in A1:A10 (say), you could add some formulas in B1:B10: Put this in B1: =hyperlink("mailto:" & a1,"Click to sendemail") and drag down to B10 Satish wrote: Hi * *Can anyone help me in writing amacroon how tocreateemaillink for theemailaddressesin aRangeorSelection.As i am new to excel i am manually selecting each cell which is havingemailaddress , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
And how did it not work?
What was in the cell with the address (the exact text)? What was the address of that cell? What was the formula you used in the adjacent cell? What was the address of the cell with the formula? Satish wrote: Hi Dave, Yes each cell contains single email address.In a range, the cells which are having email address should be hyperlinked. Regards Satish On Dec 18, 10:47 pm, Dave Peterson wrote: What does this mean? I figured that a cell would contain a single email address. So each cell would require its own hyperlink. Satish wrote: Thanks for the reply, but can you help in writing a macro where i want to do it for a range. Regards Satish On Dec 18, 8:04 pm, Dave Peterson wrote: If your data is in A1:A10 (say), you could add some formulas in B1:B10: Put this in B1: =hyperlink("mailto:" & a1,"Click to sendemail") and drag down to B10 Satish wrote: Hi Can anyone help me in writing amacroon how tocreateemaillink for theemailaddressesin aRangeorSelection.As i am new to excel i am manually selecting each cell which is havingemailaddress , 'Press F2' and then "Press ENTER".I want to automate the process and save the precious time. -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#9
![]()
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 |
Reply |
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 |