<?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; row</title>
	<atom:link href="http://www.automateexcel.com/tag/row/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>Converting a Single Row Vector into a Matrix</title>
		<link>http://www.automateexcel.com/2008/10/18/converting-a-single-row-vector-into-a-matrix/</link>
		<comments>http://www.automateexcel.com/2008/10/18/converting-a-single-row-vector-into-a-matrix/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 08:53:56 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[single]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=995</guid>
		<description><![CDATA[This is the opposite tutorial of the Convert Matrix to Vector tutorial. The following function takes a single row vector and converts into a matrix: Function Create_Matrix(Vector_Range As Range, No_Of_Cols_in_output As Integer, No_of_Rows_in_output As Integer) As Variant ReDim Temp_Array(No_Of_Cols_in_output, No_of_Rows_in_output) Dim No_Of_Elements_In_Vector As Integer Dim Col_Count As Integer, Row_Count As Integer Dim Cell No_Of_Elements_In_Vector = [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/18/converting-a-single-row-vector-into-a-matrix/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>VBA: Selecting Every 5th Row</title>
		<link>http://www.automateexcel.com/2008/09/12/vba-selecting-every-5th-row/</link>
		<comments>http://www.automateexcel.com/2008/09/12/vba-selecting-every-5th-row/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 13:41:51 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[cells]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=869</guid>
		<description><![CDATA[Imagine that we have 20,000 rows of data in an Excel spreadsheet: However, what about if you wanted to cut this data down such as take every 5th row ? This article shows how it can be done. The Row() function gives the number of each row: The mod function allows us to perform modulo [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/12/vba-selecting-every-5th-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Find the last row used</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_find_the_last_row_used/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_find_the_last_row_used/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:10:58 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Do you have to run a loop down a sheet but don&#8217;t know where the data stops? ActiveSheet.UsedRange.Rows.Count might help. 1. Put this in a module Sub LastRow() Dim LastRow As Integer LastRow = ActiveSheet.UsedRange.Rows.Count MsgBox LastRow End Sub]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_find_the_last_row_used/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

