![]() |
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? |
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 |
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 |
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? |
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? |
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? |
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? |
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? |
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? |
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? |
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? |
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 |
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? |
All times are GMT +1. The time now is 10:22 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com