#1   Report Post  
Posted to microsoft.public.excel.misc
Mindy
 
Posts: n/a
Default cell format

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jon Quixley
 
Posts: n/a
Default cell format


Mindy,

I am not sure if there is a better way of doing this (there probably is
when Bob Phillips get around to reading your mail) - You would need to
save the e-mails as separate files somewhere on your computer and then
it is a matter of hypertext linking the e-mail address to those files.
Excel will by default link an e-mail address to Outlook and your
address book, but you can edit this by right-clicking on the address
once you have it in Excel and point the hyperlink to a file rather than
to the Outlook address.

Hope this makes sense

Jon


--
Jon Quixley
------------------------------------------------------------------------
Jon Quixley's Profile: http://www.excelforum.com/member.php...o&userid=25803
View this thread: http://www.excelforum.com/showthread...hreadid=554102

  #3   Report Post  
Posted to microsoft.public.excel.misc
Jon Quixley
 
Posts: n/a
Default cell format


Mindy,

I am not sure if there is a better way of doing this (there probably is
when Bob Phillips get around to reading your mail) - You would need to
save the e-mails as separate files somewhere on your computer and then
it is a matter of hypertext linking the e-mail address to those files.
Excel will by default link an e-mail address to Outlook and your
address book, but you can edit this by right-clicking on the address
once you have it in Excel and point the hyperlink to a file rather than
to the Outlook address.

Hope this makes sense

Jon


--
Jon Quixley
------------------------------------------------------------------------
Jon Quixley's Profile: http://www.excelforum.com/member.php...o&userid=25803
View this thread: http://www.excelforum.com/showthread...hreadid=554102

  #4   Report Post  
Posted to microsoft.public.excel.misc
brodiemac
 
Posts: n/a
Default cell format

If it doesn't do it automatically, hit the insert hyperlink button and enter
it in there.

"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

  #5   Report Post  
Posted to microsoft.public.excel.misc
Chip Smith
 
Posts: n/a
Default cell format

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?



  #6   Report Post  
Posted to microsoft.public.excel.misc
shaunap
 
Posts: n/a
Default cell format

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

  #7   Report Post  
Posted to microsoft.public.excel.misc
Mindy
 
Posts: n/a
Default cell format

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

  #8   Report Post  
Posted to microsoft.public.excel.misc
shaunap
 
Posts: n/a
Default cell format

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

  #9   Report Post  
Posted to microsoft.public.excel.misc
Mindy
 
Posts: n/a
Default cell format

I haven't written a macro before so could you walk me through that process
for this situation?

"shaunap" wrote:

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

  #10   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default cell format

Mindy

David McRitchie has written a macro to change addresses to hyperlinks.

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

Hit ALT + F11 to open the VB Editor.

CTRL + r to open Project Explorer

Select your workbook/project by name and right-click and InsertModule

Copy/paste the code into that module.

Save the file then ALT + Q to go back to Excel.

You can run the macro by ToolsMacroMacrosRun

Select the range of cells before running the macro.


Gord Dibben MS Excel MVP


On Wed, 21 Jun 2006 11:24:01 -0700, Mindy
wrote:

I haven't written a macro before so could you walk me through that process
for this situation?

"shaunap" wrote:

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?




  #11   Report Post  
Posted to microsoft.public.excel.misc
Mindy
 
Posts: n/a
Default cell format

that worked, Thanks :)

"Gord Dibben" wrote:

Mindy

David McRitchie has written a macro to change addresses to hyperlinks.

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

Hit ALT + F11 to open the VB Editor.

CTRL + r to open Project Explorer

Select your workbook/project by name and right-click and InsertModule

Copy/paste the code into that module.

Save the file then ALT + Q to go back to Excel.

You can run the macro by ToolsMacroMacrosRun

Select the range of cells before running the macro.


Gord Dibben MS Excel MVP


On Wed, 21 Jun 2006 11:24:01 -0700, Mindy
wrote:

I haven't written a macro before so could you walk me through that process
for this situation?

"shaunap" wrote:

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?



  #12   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default cell format

You're welcome.

David has some pretty amazing code and general Excel information on his website.

Take a browse sometime.

http://www.mvps.org/dmcritchie/excel/excel.htm


Gord

On Wed, 21 Jun 2006 12:28:02 -0700, Mindy
wrote:

that worked, Thanks :)

"Gord Dibben" wrote:

Mindy

David McRitchie has written a macro to change addresses to hyperlinks.

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

Hit ALT + F11 to open the VB Editor.

CTRL + r to open Project Explorer

Select your workbook/project by name and right-click and InsertModule

Copy/paste the code into that module.

Save the file then ALT + Q to go back to Excel.

You can run the macro by ToolsMacroMacrosRun

Select the range of cells before running the macro.


Gord Dibben MS Excel MVP


On Wed, 21 Jun 2006 11:24:01 -0700, Mindy
wrote:

I haven't written a macro before so could you walk me through that process
for this situation?

"shaunap" wrote:

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?




Gord Dibben MS Excel MVP
  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default cell format

Thank you shaunap for this answer. It is the easiest to understand of all
the answers posted on this subject.

"shaunap" wrote:

On each entry hit F2 to edit the cell then hit Enter. The data in the cell
should automatically change to a hyperlink then. As you probably have a
number of entries to do this to just create a macro to run the two steps.

Shauna

"Mindy" wrote:

the email addresses have been imported in and excel isn't recognizing them as
email addresses.

"shaunap" wrote:

If you are entering an e-mail address and are not automatically getting a
hyperlink then go to Tools - Auto Correct Options - Auto Format As You Type
- and click the checkbox beside Internet and network paths with hyperlinks.
That should change all pathways to hyperlinks.

Shauna

"Chip Smith" wrote:

by default, excel should add a hyperlink to an email message as soon as you
put in a valid email address, ie.
--
--Chip Smith--



"Mindy" wrote:

Hello, is there anyway that if you have a column of email addresses, you can
format that column to where if you click on an email address, it will open an
email message?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
conditional cell format based on cell in same row, previous column tamiluchi Excel Worksheet Functions 7 May 3rd 06 04:11 PM
Custom functions calculating time arguments Help Desperate Bill_De Excel Worksheet Functions 12 April 25th 06 02:22 AM
Cell data format falloutx Excel Discussion (Misc queries) 1 February 10th 06 01:46 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
can't format cell - have tried unlocking and unprotecting griffin Excel Discussion (Misc queries) 1 April 5th 05 02:11 AM


All times are GMT +1. The time now is 03:59 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"