I copied and pasted email address's into a column but the address's are not
active. I can't click on them to send email. How can I format the column for
email??
Thanks

Signature
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
Niek Otten - 29 Mar 2008 14:14 GMT
=HYPERLINK(A1)

Signature
Kind regards,
Niek Otten
Microsoft MVP - Excel
|I copied and pasted email address's into a column but the address's are not
| active. I can't click on them to send email. How can I format the column for
| email??
|
| Thanks
Jim Cone - 29 Mar 2008 14:25 GMT
Also...
Tools (menu) | Auto Correct Options | AutoFormat as you Type (tab)...
Checkmark "Internet and Network Paths..."
( I hope all those emails you send are solicited)

Signature
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)
"Doug"
<doug57@www.com>
wrote in message
I copied and pasted email address's into a column but the address's are not
active. I can't click on them to send email. How can I format the column for
email??
Thanks
--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
Doug - 29 Mar 2008 14:55 GMT
Actually I have a youth football league and I am setting up player rosters
with contact information.
Thanks

Signature
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
>
> Also...
> Tools (menu) | Auto Correct Options | AutoFormat as you Type (tab)...
> Checkmark "Internet and Network Paths..."
> ( I hope all those emails you send are solicited)
Gord Dibben - 29 Mar 2008 16:42 GMT
Sub MakeHyperlinks()
'David McRitchie
Dim cell As Range
For Each cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
With Worksheets(1)
.Hyperlinks.Add anchor:=cell, _
Address:=cell.Value, _
ScreenTip:=cell.Value, _
TextToDisplay:=cell.Value
End With
Next cell
End Sub
Gord Dibben MS Excel MVP
>I copied and pasted email address's into a column but the address's are not
>active. I can't click on them to send email. How can I format the column for
>email??
>
>Thanks