<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Excel - Column of email addresses. How do I make each cell hyperlink to that email?</title>
	<atom:link href="http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email/feed" rel="self" type="application/rss+xml" />
	<link>http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email</link>
	<description>Turn Your List Into A Cash Flow Jack Hammer</description>
	<pubDate>Sun, 20 May 2012 19:52:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Jeremy</title>
		<link>http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email#comment-364</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 31 Dec 2008 20:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email#comment-364</guid>
		<description>That&#39;s funny-- when I type an email address in a cell in Excel, I can simply click on it and it does exactly as you&#39;re asking here-- opens a new outlook message with the To: address already populated.  I&#39;m using Excel 2003.  I wonder if the cells in your Col M are formatted differently (I believe there&#39;s some setting where the hyperlink isn&#39;t active) or if you have leading/trailing spaces or some kind of character stuck in there?
Try typing an email address somewhere else on the sheet (or a new workbook entirely) and see if it does the same thing, maybe?&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>That&#39;s funny&#8211; when I type an email address in a cell in Excel, I can simply click on it and it does exactly as you&#39;re asking here&#8211; opens a new outlook message with the To: address already populated.  I&#39;m using Excel 2003.  I wonder if the cells in your Col M are formatted differently (I believe there&#39;s some setting where the hyperlink isn&#39;t active) or if you have leading/trailing spaces or some kind of character stuck in there?<br />
Try typing an email address somewhere else on the sheet (or a new workbook entirely) and see if it does the same thing, maybe?<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kokevi_t</title>
		<link>http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email#comment-363</link>
		<dc:creator>kokevi_t</dc:creator>
		<pubDate>Wed, 31 Dec 2008 19:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://twistyourlist.com/addresses-email/excel-column-of-email-addresses-how-do-i-make-each-cell-hyperlink-to-that-email#comment-363</guid>
		<description>I&#39;m not sure if 2003 automatically assigns hyperlinks to items it recognises as email addresses. You could try F2 and then Enter to see what it does. Otherwise you can run some VBA code to put the hyperlink into each cell:

Sub Email()

For i = 0 To 10

X = Range(&#34;M1&#34;).Offset(i, 0)
Y = &#34;mailto:&#34; &#038; X

    Range(&#34;m1&#34;).Offset(i, 0).Select
    ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= _
        Y, TextToDisplay:=X

Next i

End Sub

The code won&#39;t work with numbers or empty cells, so you could refine it a bit.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>I&#39;m not sure if 2003 automatically assigns hyperlinks to items it recognises as email addresses. You could try F2 and then Enter to see what it does. Otherwise you can run some VBA code to put the hyperlink into each cell:</p>
<p>Sub Email()</p>
<p>For i = 0 To 10</p>
<p>X = Range(&quot;M1&quot;).Offset(i, 0)<br />
Y = &quot;mailto:&quot; &#038; X</p>
<p>    Range(&quot;m1&quot;).Offset(i, 0).Select<br />
    ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= _<br />
        Y, TextToDisplay:=X</p>
<p>Next i</p>
<p>End Sub</p>
<p>The code won&#39;t work with numbers or empty cells, so you could refine it a bit.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

