<?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: Limiting a Range for Looping</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/10/07/limiting-a-range-for-looping/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/10/07/limiting-a-range-for-looping/</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: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/07/limiting-a-range-for-looping/#comment-2397</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Wed, 20 Oct 2004 05:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=798#comment-2397</guid>
		<description>&lt;p&gt;Ben:  I&#039;m ashamed that I&#039;ve never used that.  It&#039;s much better.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ben:  I&#8217;m ashamed that I&#8217;ve never used that.  It&#8217;s much better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/07/limiting-a-range-for-looping/#comment-2396</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 19 Oct 2004 13:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=798#comment-2396</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;thanks for your suggestion, but I prefer this line of code&lt;/p&gt;
&lt;p&gt;For Each rCell in Sheet1.UsedRange.Columns(1).Cells&lt;/p&gt;
&lt;p&gt;You don&#039;t have to estimate the intersection of the UsedRange and the whole column A.&lt;/p&gt;
&lt;p&gt;Anyway, have a nice weekend!&lt;/p&gt;
&lt;p&gt;Greetz&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>thanks for your suggestion, but I prefer this line of code</p>
<p>For Each rCell in Sheet1.UsedRange.Columns(1).Cells</p>
<p>You don&#8217;t have to estimate the intersection of the UsedRange and the whole column A.</p>
<p>Anyway, have a nice weekend!</p>
<p>Greetz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.E. McGimpsey</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/07/limiting-a-range-for-looping/#comment-2395</link>
		<dc:creator>J.E. McGimpsey</dc:creator>
		<pubDate>Thu, 07 Oct 2004 22:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=798#comment-2395</guid>
		<description>&lt;p&gt;Note that SpecialCells is even more limiting, as it only evaluates UsedRange, so&lt;/p&gt;
&lt;p&gt;    For Each rCell In Sheet1.Columns(1).SpecialCells( _&lt;br&gt;
                            xlCellTypeConstants, xlTextValues)&lt;/p&gt;
&lt;p&gt;will be even faster if there are blank or numeric cells. It also avoids an intermediate reference resolution.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Note that SpecialCells is even more limiting, as it only evaluates UsedRange, so</p>
<p>    For Each rCell In Sheet1.Columns(1).SpecialCells( _<br />
                            xlCellTypeConstants, xlTextValues)</p>
<p>will be even faster if there are blank or numeric cells. It also avoids an intermediate reference resolution.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

