<?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>Excel Hints &#187; Excel Macros</title>
	<atom:link href="http://excelhints.com/category/excel-macros/feed/" rel="self" type="application/rss+xml" />
	<link>http://excelhints.com</link>
	<description>Excel Tips and Tricks for All Levels</description>
	<lastBuildDate>Thu, 08 Jul 2010 18:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<image>
  <link>http://excelhints.com</link>
  <url>http://excelhints.com/Favicon.gif</url>
  <title>Excel Hints</title>
</image>
		<item>
		<title>How to Stop Excel from Flickering during Macros</title>
		<link>http://excelhints.com/2010/03/13/how-to-stop-screen-from-flickering-during-macros/</link>
		<comments>http://excelhints.com/2010/03/13/how-to-stop-screen-from-flickering-during-macros/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 04:48:33 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[ScreenUpdating]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=774</guid>
		<description><![CDATA[If you&#8217;ve ever written or recorded a macro in Excel, you&#8217;ve no doubt noticed that it shows everything on the screen you tell it to do. Depending on the code, Excel will show different cell locations or even different worksheets being selected during run time. Below I&#8217;m going to show you a line of VBA [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "How to Stop Excel from Flickering during Macros", url: "http://excelhints.com/2010/03/13/how-to-stop-screen-from-flickering-during-macros/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2010/03/13/how-to-stop-screen-from-flickering-during-macros/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Macro to Disable Cell Calculations on a Sheet</title>
		<link>http://excelhints.com/2009/11/29/macro-to-disable-cell-calculations-on-a-sheet/</link>
		<comments>http://excelhints.com/2009/11/29/macro-to-disable-cell-calculations-on-a-sheet/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 05:12:27 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Cell Calculation]]></category>
		<category><![CDATA[Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=749</guid>
		<description><![CDATA[If you&#8217;ve ever had a sheet in your project that has a number of formulas with calculations, you&#8217;ve no doubt noticed the slowdown that occurs when saving your spreadsheet or editing a formula.  Excel has a property that can be adjusted within a macro that allows you to turn on and off the calculations on [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Macro to Disable Cell Calculations on a Sheet", url: "http://excelhints.com/2009/11/29/macro-to-disable-cell-calculations-on-a-sheet/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/11/29/macro-to-disable-cell-calculations-on-a-sheet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Working with Userforms Part 1: Hello World! Button</title>
		<link>http://excelhints.com/2009/09/08/working-with-userforms-part-1-hello-world-button/</link>
		<comments>http://excelhints.com/2009/09/08/working-with-userforms-part-1-hello-world-button/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 19:21:53 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Userform]]></category>
		<category><![CDATA[Macros]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=701</guid>
		<description><![CDATA[Over the next few posts we will look at how to build a userform and put it to good use.  Using a userform will provide additional functionality in your project that using the spreadsheet alone may not provide.  One way to give your project that customized polished look, may be to incorporate the use of [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Working with Userforms Part 1: Hello World! Button", url: "http://excelhints.com/2009/09/08/working-with-userforms-part-1-hello-world-button/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/09/08/working-with-userforms-part-1-hello-world-button/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Run a Macro When Opening a Workbook</title>
		<link>http://excelhints.com/2009/04/16/run-a-macro-when-opening-a-workbook/</link>
		<comments>http://excelhints.com/2009/04/16/run-a-macro-when-opening-a-workbook/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 03:31:09 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Auto_Open]]></category>
		<category><![CDATA[Excel Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=633</guid>
		<description><![CDATA[There may be a time when you want a macro to run automatically every time you open a workbook.  Excel has a built in way to help with this &#8211; the Auto_Open subroutine (Workbook_Open achieves a similar result).  Each time Excel opens, Auto_Open() will run only once when the workbook is open.  Let&#8217;s go ahead [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Run a Macro When Opening a Workbook", url: "http://excelhints.com/2009/04/16/run-a-macro-when-opening-a-workbook/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/04/16/run-a-macro-when-opening-a-workbook/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Writing a Macro</title>
		<link>http://excelhints.com/2009/03/01/writing-a-macro/</link>
		<comments>http://excelhints.com/2009/03/01/writing-a-macro/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 02:00:09 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Basic Macro]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[Sub]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=580</guid>
		<description><![CDATA[You may have heard a macro as being referred to also as a sub or subroutine, but any way you phrase it, it is a set of instructions in VBA used to perform an action.  Using macros in Excel will greatly enhance your Excel experience and open up many possibilities through flexibility and speed.  In [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Writing a Macro", url: "http://excelhints.com/2009/03/01/writing-a-macro/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/03/01/writing-a-macro/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Writing a Custom Function</title>
		<link>http://excelhints.com/2009/02/22/writing-a-custom-function/</link>
		<comments>http://excelhints.com/2009/02/22/writing-a-custom-function/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 17:29:04 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Custom Function]]></category>
		<category><![CDATA[Excel Function]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=568</guid>
		<description><![CDATA[Using VBA, Excel lets you write custom functions that you can call from any cell in your worksheet (You can also call them from macros you create in VBA, but we&#8217;ll revisit this later).  This feature is attractive when you are currently using a complicated formula to do some work in your spreadsheet, especially when [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Writing a Custom Function", url: "http://excelhints.com/2009/02/22/writing-a-custom-function/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/02/22/writing-a-custom-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Difference Between Sub and Function</title>
		<link>http://excelhints.com/2009/02/12/difference-between-sub-and-function/</link>
		<comments>http://excelhints.com/2009/02/12/difference-between-sub-and-function/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 04:12:22 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Sub vs Function]]></category>
		<category><![CDATA[Excel Function]]></category>
		<category><![CDATA[Excel Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=563</guid>
		<description><![CDATA[The difference between when to use Sub and Function in VBA can be confusing.  Let&#8217;s take a look at some of the differences between the two and when they should be used.  Using these two features correctly can greatly increase the flexibility of your designs. Using Sub The easiest way to think of a sub vs [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Difference Between Sub and Function", url: "http://excelhints.com/2009/02/12/difference-between-sub-and-function/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2009/02/12/difference-between-sub-and-function/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using the Status Bar to Display Messages</title>
		<link>http://excelhints.com/2008/11/04/using-the-status-bar-to-display-messages/</link>
		<comments>http://excelhints.com/2008/11/04/using-the-status-bar-to-display-messages/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 01:13:00 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Status Bar Messages]]></category>
		<category><![CDATA[Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=383</guid>
		<description><![CDATA[Excel provides an easy way to show the end user messages about the status of a macro that is running. This can be a useful way of updating users, especially during long running macros, as to the status of the routine. Some users need updates from the system to let them know that the program [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Using the Status Bar to Display Messages", url: "http://excelhints.com/2008/11/04/using-the-status-bar-to-display-messages/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2008/11/04/using-the-status-bar-to-display-messages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Count Rows with Data in a Macro</title>
		<link>http://excelhints.com/2008/10/16/count-rows-with-data-in-a-macro/</link>
		<comments>http://excelhints.com/2008/10/16/count-rows-with-data-in-a-macro/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 01:57:58 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Count]]></category>
		<category><![CDATA[Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=324</guid>
		<description><![CDATA[For this Excel tip, let&#8217;s look at an easy way to count the number of rows containing data in a spreadsheet.  One way would be to do use a for loop and a counting variable, but that contains unnecessary steps to get the job done. A simple way to count the number of rows in a spreadsheet [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Count Rows with Data in a Macro", url: "http://excelhints.com/2008/10/16/count-rows-with-data-in-a-macro/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2008/10/16/count-rows-with-data-in-a-macro/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Using a For Loop in a Macro</title>
		<link>http://excelhints.com/2008/10/12/using-a-for-loop-in-a-macro/</link>
		<comments>http://excelhints.com/2008/10/12/using-a-for-loop-in-a-macro/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 12:00:28 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Loops]]></category>
		<category><![CDATA[Macro]]></category>

		<guid isPermaLink="false">http://excelhints.com/?p=192</guid>
		<description><![CDATA[If you&#8217;re new to macros, you might want to check out a previous post I made Familiarizing with the Visual Basic Editor and Use the Record Macro Feature.  Basically, the purpose of a macro in Excel is to provide you with a way of quickly and easily modifying the values in your spreadsheet.  Actually, there are [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Using a For Loop in a Macro", url: "http://excelhints.com/2008/10/12/using-a-for-loop-in-a-macro/" });</script>]]></description>
		<wfw:commentRss>http://excelhints.com/2008/10/12/using-a-for-loop-in-a-macro/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
