<?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; macro</title>
	<atom:link href="http://www.automateexcel.com/tag/macro/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>VBA: Cut, Copy, Paste from a Macro</title>
		<link>http://www.automateexcel.com/2004/08/18/excel_cut_copy_paste_from_a_macro/</link>
		<comments>http://www.automateexcel.com/2004/08/18/excel_cut_copy_paste_from_a_macro/#comments</comments>
		<pubDate>Wed, 18 Aug 2004 03:42:10 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[cut]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[paste]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[It&#8217;s pretty easy to cut and paste from a macro. Here are a few examples. The code works identical for copy, just replace the word cut with copy! This one cuts and pastes a single cell, a1 over to b1: Sub OneCell() Range("A1").Select Selection.Cut Range("B1").Select ActiveSheet.Paste Application.CutCopyMode = False End Sub This one cuts and [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/18/excel_cut_copy_paste_from_a_macro/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>VBA: Macro to Update all Worksheets in Workbook</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 01:07:38 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[workbook]]></category>
		<category><![CDATA[worksheet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Macro&#8217;s applied to an entire workbook can be handy for extracting data from multiple sheets to a new workbook, applying advanced formatting to all sheets, or many other reasons. Here is the basic syntax and a working code example for vba that works on every sheet in a workbook. The basic syntax for looping through [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Macro to Autofill</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_autofill/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_autofill/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 01:04:31 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[autofill]]></category>
		<category><![CDATA[macro]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Take control of Autofill using vba with this simple macro code example. It takes the data from the range A1:A2 and autifills it to A20. This can be modified to autofill any way you would like using a little macro tweaking. Selection1 is the range with the data to autofill. Selection2 is the entire range [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_autofill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Prevent warning messages from a macro</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_prevent_warning_messages_from/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_prevent_warning_messages_from/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:54:27 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[warning messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[When writing a macro there are times when you don&#8217;t need to prompt the user with the default warning messages, like &#8220;Ok to delete sheet?&#8221;. To turn off the default warning messages, add this code to your macro. To prevent warning messages, place this code in your macro Application.DisplayAlerts = False And don&#8217;t forget to [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_prevent_warning_messages_from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Run a Macro from a Macro</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_from_a_macro/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_from_a_macro/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:47:35 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So you just recorded two macros, and you would like to run them as one macro, it&#8217;s pretty simple. Assuming you have Macro1 and Macro2, put this code at the end of Macro1 Call Macro2 Now everytime you run Macro1, Macro2 runs automatically.]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_from_a_macro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Status Bar Updating</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_status_bar_updating/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_status_bar_updating/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:38:53 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[status bar]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[You can update the status bar in Excel while a macro is running to display a custom message. 1. Place this code in a macro whenever you want to update the user with a custom status bar message: Application.StatusBar = "I'm working Now!!!" 2. And at the end of your macro place this code to [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_status_bar_updating/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VBA: Run a macro when Excel closes</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_closes/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_closes/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:29:24 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[macro]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Do you need to run a macro when Excel closes? You can use the Auto_Close sub. 1. Simply create a subroutine called Auto_Close and place code in it, or call another sub from there. Automatically your code runs when Excel closes. Private Sub auto_close() MsgBox "This code ran at Excel close!" End Sub]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_closes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Run a macro when Excel starts</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_starts/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_starts/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:27:35 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[open]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Do you need to run a macro when Excel starts? Instead of using the Workbook_Open() sub, you can also use the Auto_Open sub. 1. Simply create a subroutine called Auto_Open and place code in it, or call another sub from there. Automatically your code runs when Excel starts. Private Sub auto_open() MsgBox "This code ran [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_run_a_macro_when_excel_starts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

