ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Using Macro how to create email link for the email addresses in aRange or Selection (https://www.excelbanter.com/excel-worksheet-functions/251407-using-macro-how-create-email-link-email-addresses-arange-selection.html)

Satish[_2_]

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Eduardo

Using Macro how to create email link for the email addresses in a
 
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.
.


Satish[_2_]

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Satish[_2_]

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Satish[_2_]

Using Macro how to create email link for the email addresses in aRange or Selection
 
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

Using Macro how to create email link for the email addresses in aRange or Selection
 
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


All times are GMT +1. The time now is 07:16 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com