batch converting a list of email addresses to 'mailto:' hyperlink

C

Chuck

I would like to know if it is possible to batch convert a
columnar list of email addresses to 'mailto:' hyperlink.
I can do it 'one at a time', but it will take forever..
pls anyone help? send to email address, thanks..
 
F

Felipe

Chuck:

Select the range of data you want to convert and run the
following macro:
Sub Mailto_hyperlink()
Dim i As Integer
Dim myRange As Range

Set myRange = Selection

With myRange
For i = 1 To .Rows.Count
ActiveSheet.Hyperlinks.Add Anchor:=Selection,
Address:="mailto:" & ActiveCell.Value
ActiveCell.Offset(1, 0).Range("A1").Select
Next i
End With
End Sub

Regards,
Felipe
 
D

Dave Peterson

How about a helper column with a formula:

=hyperlink("mailto:"&a1,a1)

And drag down.
 
Joined
May 4, 2012
Messages
1
Reaction score
0
Propeller heads put way to much thought into it.

How about the painter function Geeesh! Copy one cell and hit painter function the paint brush and high light the rest of the cells and release there you go they are hyperlinked to mail
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top