<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Automate Excel &#187; loop</title>
	<atom:link href="http://www.automateexcel.com/tag/loop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Hundreds of Excel Tips &#38; Tricks</description>
	<lastBuildDate>Mon, 21 Dec 2009 20:35:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VBA: Loop Through a String</title>
		<link>http://www.automateexcel.com/2005/01/11/excel_vba_loop_through_a_string_1/</link>
		<comments>http://www.automateexcel.com/2005/01/11/excel_vba_loop_through_a_string_1/#comments</comments>
		<pubDate>Tue, 11 Jan 2005 13:03:35 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Strings]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[You can perform logic on, or return individual characters from a string in VBA by looping through the string.
The following is an example of looping through a string using a For&#8230;Next Loop, and returning each character in a msgbox.
Sub LoopThroughString()

Dim Counter As Integer
Dim MyString As String

MyString = "AutomateExcel" 'define string

For Counter = 1 To Len(MyString)
 [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2005/01/11/excel_vba_loop_through_a_string_1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VBA: Loop Through a String</title>
		<link>http://www.automateexcel.com/2004/11/10/excel_vba_loop_through_a_string/</link>
		<comments>http://www.automateexcel.com/2004/11/10/excel_vba_loop_through_a_string/#comments</comments>
		<pubDate>Wed, 10 Nov 2004 06:45:48 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Strings]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Here are a couple ways of looping through a string, or reading a string from a Macro.
To use either example, simply replace the text that the variable named LookInHere is equal to.  There&#8217;s a comment in the code to give you a hint.
Read Every Character in a String
This example reads every character in a [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/11/10/excel_vba_loop_through_a_string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Loop Through a Range</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_loop_through_a_range/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_loop_through_a_range/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 02:03:17 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[range]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you want to test a condition for each cell in a range using VBA, the best way is to loop through the range, testing each cell.  Here are two code examples to demostrate how to loop through a range.  You can replace the range value for whatever range you need to loop [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_loop_through_a_range/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
