<?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; range</title>
	<atom:link href="http://www.automateexcel.com/tag/range/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Wed, 24 Nov 2010 21:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Finding the Maximum Value in Each Column in a Range</title>
		<link>http://www.automateexcel.com/2008/10/16/finding-the-maximum-value-in-each-column-in-a-range/</link>
		<comments>http://www.automateexcel.com/2008/10/16/finding-the-maximum-value-in-each-column-in-a-range/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 15:35:04 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[maximum]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=978</guid>
		<description><![CDATA[The following function will return the Maximum Value in each Column in a Range: Function Max_Each_Column(Data_Range As Range) As Variant Dim TempArray() As Double, i As Long If Data_Range Is Nothing Then Exit Function With Data_Range ReDim TempArray(1 To .Columns.Count) For i = 1 To .Columns.Count TempArray(i) = Application.Max(.Columns(i)) Next End With Max_Each_Column = TempArray [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/16/finding-the-maximum-value-in-each-column-in-a-range/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VBA Function: Populating a Range</title>
		<link>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/</link>
		<comments>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 11:06:58 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[populating]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=918</guid>
		<description><![CDATA[The following code will populate a given range with a random number between 0 and 1000: Sub Randomise_Range(Cell_Range As Range) ' Will randomise each cell in Range Dim Cell 'Turn off screen alerts Application.ScreenUpdating = False For Each Cell In Cell_Range Cell.Value = Rnd * 1000 Next Cell Application.ScreenUpdating = True End Sub The code [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/feed/</wfw:commentRss>
		<slash:comments>2</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 through. The [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_loop_through_a_range/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

