<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Pasting Excel Ranges in Outlook</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Curious</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-43284</link>
		<dc:creator>Curious</dc:creator>
		<pubDate>Mon, 11 Jan 2010 20:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-43284</guid>
		<description>&lt;p&gt;I want to open an excel file on Excel startup.  However, I do not want to save that file in XLSTART folder, nor do I want to open all the files in a specific folder.  Is there an alternative?  One of the alternative is to paste the shortcut in XLSTART.  Are there any other ways?...Looking for some creative answers.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I want to open an excel file on Excel startup.  However, I do not want to save that file in XLSTART folder, nor do I want to open all the files in a specific folder.  Is there an alternative?  One of the alternative is to paste the shortcut in XLSTART.  Are there any other ways?&#8230;Looking for some creative answers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MCD</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-42874</link>
		<dc:creator>MCD</dc:creator>
		<pubDate>Thu, 17 Dec 2009 16:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-42874</guid>
		<description>&lt;p&gt;After a range is pasted into Outlook in both Rich Text or HTML, an option is created from the paste options button that appears in the lower right-hand side of what was pasted.  From here you can select the match destination table style and it will create a grid, which can be edited per your preference.  Plain text does not recognize tables, so that formatting is lost.  As far as tabs are concerned in Excel, these already exist as the grid lines between cells (paste in Notepad to verify this,) so really is a moot consideration.  On a side note, The Alt-Enter &quot;space&quot; does not have the same effect when pasted into plain text, but might lead to a solution to the original issue of placing a tab inside a cell.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>After a range is pasted into Outlook in both Rich Text or HTML, an option is created from the paste options button that appears in the lower right-hand side of what was pasted.  From here you can select the match destination table style and it will create a grid, which can be edited per your preference.  Plain text does not recognize tables, so that formatting is lost.  As far as tabs are concerned in Excel, these already exist as the grid lines between cells (paste in Notepad to verify this,) so really is a moot consideration.  On a side note, The Alt-Enter &#8220;space&#8221; does not have the same effect when pasted into plain text, but might lead to a solution to the original issue of placing a tab inside a cell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon von der Heyden</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-42871</link>
		<dc:creator>Jon von der Heyden</dc:creator>
		<pubDate>Thu, 17 Dec 2009 13:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-42871</guid>
		<description>&lt;p&gt;I would never use this, but thought I&#039;d see what I could do with paste special.   The only way I could find was to use SendKeys (yuk!).  And this also only works because I use Word as my email editor.&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Option&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Explicit&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Private&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; MyMailer()&lt;br&gt;
&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; rng &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Excel.Range&lt;br&gt;
&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; outApp &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Outlook.Application&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; outMail &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Outlook.MailItem&lt;br&gt;
&#160; &#160; &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; outApp = &lt;span class=&quot;kw1&quot;&gt;New&lt;/span&gt; Outlook.Application&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; outMail = outApp.CreateItem(olMailItem)&lt;br&gt;
&#160; &#160; &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; rng = Range(&lt;span class=&quot;st0&quot;&gt;&quot;A1:C10&quot;&lt;/span&gt;)&lt;br&gt;
&#160; &#160; &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; outMail&lt;br&gt;
&#160; &#160; &#160; &#160; .&lt;span class=&quot;kw1&quot;&gt;To&lt;/span&gt; = &lt;span class=&quot;st0&quot;&gt;&quot;test&quot;&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; .Subject = &lt;span class=&quot;st0&quot;&gt;&quot;test&quot;&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; rng.Copy&lt;br&gt;
&#160; &#160; &#160; &#160; .Display&lt;br&gt;
&#160; &#160; &#160; &#160; Application.Wait Now + TimeValue(&lt;span class=&quot;st0&quot;&gt;&quot;00:00:01&quot;&lt;/span&gt;)&lt;br&gt;
&#160; &#160; &#160; &#160; SendKeys &lt;span class=&quot;st0&quot;&gt;&quot;%es{UP}&quot;&lt;/span&gt; &amp; Application.Rept(&lt;span class=&quot;st0&quot;&gt;&quot;{UP}&quot;&lt;/span&gt;, 4) &amp; &lt;span class=&quot;st0&quot;&gt;&quot;{ENTER}&quot;&lt;/span&gt;, &lt;span class=&quot;kw1&quot;&gt;True&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; Application.Wait Now + TimeValue(&lt;span class=&quot;st0&quot;&gt;&quot;00:00:01&quot;&lt;/span&gt;)&lt;br&gt;
&#160; &#160; &#160; &#160; SendKeys &lt;span class=&quot;st0&quot;&gt;&quot;%s&quot;&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;br&gt;
Finish:&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; outApp = &lt;span class=&quot;kw1&quot;&gt;Nothing&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; outMail = &lt;span class=&quot;kw1&quot;&gt;Nothing&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; rng = &lt;span class=&quot;kw1&quot;&gt;Nothing&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>I would never use this, but thought I&#8217;d see what I could do with paste special.   The only way I could find was to use SendKeys (yuk!).  And this also only works because I use Word as my email editor.</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Option</span> <span class="kw1">Explicit</span></p>
<p><span class="kw1">Private</span> <span class="kw1">Sub</span> MyMailer()</p>
<p>&nbsp; &nbsp; <span class="kw1">Dim</span> rng <span class="kw1">As</span> Excel.Range</p>
<p>&nbsp; &nbsp; <span class="kw1">Dim</span> outApp <span class="kw1">As</span> Outlook.Application<br />
&nbsp; &nbsp; <span class="kw1">Dim</span> outMail <span class="kw1">As</span> Outlook.MailItem<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Set</span> outApp = <span class="kw1">New</span> Outlook.Application<br />
&nbsp; &nbsp; <span class="kw1">Set</span> outMail = outApp.CreateItem(olMailItem)<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">Set</span> rng = Range(<span class="st0">&#8220;A1:C10&#8243;</span>)<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">With</span> outMail<br />
&nbsp; &nbsp; &nbsp; &nbsp; .<span class="kw1">To</span> = <span class="st0">&#8220;test&#8221;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; .Subject = <span class="st0">&#8220;test&#8221;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; rng.Copy<br />
&nbsp; &nbsp; &nbsp; &nbsp; .Display<br />
&nbsp; &nbsp; &nbsp; &nbsp; Application.Wait Now + TimeValue(<span class="st0">&#8220;00:00:01&#8243;</span>)<br />
&nbsp; &nbsp; &nbsp; &nbsp; SendKeys <span class="st0">&#8220;%es{UP}&#8221;</span> &amp; Application.Rept(<span class="st0">&#8220;{UP}&#8221;</span>, 4) &amp; <span class="st0">&#8220;{ENTER}&#8221;</span>, <span class="kw1">True</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Application.Wait Now + TimeValue(<span class="st0">&#8220;00:00:01&#8243;</span>)<br />
&nbsp; &nbsp; &nbsp; &nbsp; SendKeys <span class="st0">&#8220;%s&#8221;</span><br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">With</span><br />
&nbsp; &nbsp; <br />
Finish:<br />
&nbsp; &nbsp; <span class="kw1">Set</span> outApp = <span class="kw1">Nothing</span><br />
&nbsp; &nbsp; <span class="kw1">Set</span> outMail = <span class="kw1">Nothing</span><br />
&nbsp; &nbsp; <span class="kw1">Set</span> rng = <span class="kw1">Nothing</span><br />
&nbsp; &nbsp; <br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Jenkins</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-42855</link>
		<dc:creator>Doug Jenkins</dc:creator>
		<pubDate>Wed, 16 Dec 2009 23:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-42855</guid>
		<description>&lt;p&gt;Using Excel 2007:&lt;/p&gt;
&lt;p&gt;ActiveCell.Value = &quot;this&quot; &amp; Chr(9) &amp; &quot;that&quot; produces thisthat&lt;/p&gt;
&lt;p&gt;Entering &quot;this&quot; &amp; Char(9) &amp; &quot;that&quot; produces thisthat&lt;/p&gt;
&lt;p&gt;Entering this[tab]that (where [tab] = press tab key) in a text editor and copying and pasting produces this and that in two adjacent cells&lt;/p&gt;
&lt;p&gt;Copying a tab character from a text editor and pasting selects two blank cells&lt;/p&gt;
&lt;p&gt;Is this an Excel 2007 thing, or is there a setting somewhere?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Using Excel 2007:</p>
<p>ActiveCell.Value = &#8220;this&#8221; &amp; Chr(9) &amp; &#8220;that&#8221; produces thisthat</p>
<p>Entering &#8220;this&#8221; &amp; Char(9) &amp; &#8220;that&#8221; produces thisthat</p>
<p>Entering this[tab]that (where [tab] = press tab key) in a text editor and copying and pasting produces this and that in two adjacent cells</p>
<p>Copying a tab character from a text editor and pasting selects two blank cells</p>
<p>Is this an Excel 2007 thing, or is there a setting somewhere?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-42852</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Wed, 16 Dec 2009 20:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-42852</guid>
		<description>&lt;p&gt;The way I stick Tab into a cell is no better. Start &gt; Run &gt; Notepad. Hit the Tab key, Ctrl-A, Ctrl-C, Back to Excel, Paste in the cell.&lt;/p&gt;
&lt;p&gt;I too use Outlook, but I don&#039;t use plain text, or HTML. I use Rich Text wherever possible. When I paste a range, it comes out in a grid - beautiful.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The way I stick Tab into a cell is no better. Start &gt; Run &gt; Notepad. Hit the Tab key, Ctrl-A, Ctrl-C, Back to Excel, Paste in the cell.</p>
<p>I too use Outlook, but I don&#8217;t use plain text, or HTML. I use Rich Text wherever possible. When I paste a range, it comes out in a grid &#8211; beautiful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fzz</title>
		<link>http://www.dailydoseofexcel.com/archives/2009/12/16/pasting-excel-ranges-in-outlook/#comment-42850</link>
		<dc:creator>fzz</dc:creator>
		<pubDate>Wed, 16 Dec 2009 19:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=3371#comment-42850</guid>
		<description>&lt;p&gt;So this is a problem due to composing Plain Text e-mails in Outlook?&lt;/p&gt;
&lt;p&gt;FWIW, copying a multiple column range in Excel then pasting as plain text into Lotus Notes produces the equivalent of your final result above. Nice to know Microsoft makes this much harder in Outlook. Just curios: there&#039;s no Paste Special command in Outlook?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>So this is a problem due to composing Plain Text e-mails in Outlook?</p>
<p>FWIW, copying a multiple column range in Excel then pasting as plain text into Lotus Notes produces the equivalent of your final result above. Nice to know Microsoft makes this much harder in Outlook. Just curios: there&#8217;s no Paste Special command in Outlook?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

