<?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; rows</title>
	<atom:link href="http://www.automateexcel.com/tag/rows/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>Deleting Rows that meet a Certain Criteria</title>
		<link>http://www.automateexcel.com/2008/10/14/deleting-rows-that-meet-a-certain-criteria/</link>
		<comments>http://www.automateexcel.com/2008/10/14/deleting-rows-that-meet-a-certain-criteria/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:50:19 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[criteria]]></category>
		<category><![CDATA[deleting]]></category>
		<category><![CDATA[rows]]></category>
		<category><![CDATA[subroutine]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=974</guid>
		<description><![CDATA[The following Subroutine will delete each row in a range where the value in Column A begins with a prescribed piece of text: Sub Delete_Rows(Data_range As Range, Text As String) Dim Row_Counter As Integer For Row_Counter = Data_range.Rows.Count To 1 Step -1 If Data_range Is Nothing Then Exit Sub End If If UCase(Left(Data_range.Cells(Row_Counter, 1).Value, Len(Text))) [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/14/deleting-rows-that-meet-a-certain-criteria/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VBA: Remove Blank Rows</title>
		<link>http://www.automateexcel.com/2004/12/20/excel_vba_remove_blank_rows/</link>
		<comments>http://www.automateexcel.com/2004/12/20/excel_vba_remove_blank_rows/#comments</comments>
		<pubDate>Mon, 20 Dec 2004 10:09:25 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[blank]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[rows]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The obvious way to remove blank rows from a data set is to simply sort the data. This moves the blank rows to the bottom of the data and &#8220;removes&#8221; them. But what if you want the blank rows removed, however you don&#8217;t want the data sorted? VBA. The following macro will remove blank rows [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/12/20/excel_vba_remove_blank_rows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VBA: Count the Number of Used Rows</title>
		<link>http://www.automateexcel.com/2004/09/07/excel_vba_count_the_number_of_used_rows/</link>
		<comments>http://www.automateexcel.com/2004/09/07/excel_vba_count_the_number_of_used_rows/#comments</comments>
		<pubDate>Tue, 07 Sep 2004 23:48:38 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[rows]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The following code will return in a message box the total number of rows used in a worksheet. Empty rows are considered used if data follows the empty row. MsgBox ActiveSheet.UsedRange.Rows.Count]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/09/07/excel_vba_count_the_number_of_used_rows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

