<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>RV Consulting Tutorials</title>
	<atom:link href="http://rvconsulting.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rvconsulting.wordpress.com</link>
	<description>Free Microsoft Word, Excel, Powerpoint and Open Source Tutorials from www.rvc.in</description>
	<pubDate>Mon, 02 Oct 2006 11:44:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Creating a new macro directly in the VBA Editor</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/creating-a-new-macro-directly-in-the-vba-editor/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/creating-a-new-macro-directly-in-the-vba-editor/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 23:36:30 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/creating-a-new-macro-directly-in-the-vba-editor/</guid>
		<description><![CDATA[ Note: to be read after the post:
First Look at the VBA Editor
Ok. So we have now seen how to modify a macro created using the &#8216;Record Macro&#8217; option. What if we want to create a Subroutine without doing any recording. Simplicity itself.

Open the VBA Editor(Alt-F11)
Type in the Code required starting with a sub name() [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Note: to be read after the post:</p>
<h2><font size="1">First Look at the VBA Editor</font></h2>
<p>Ok. So we have now seen how to modify a macro created using the &#8216;Record Macro&#8217; option. What if we want to create a Subroutine without doing any recording. Simplicity itself.</p>
<ul>
<li>Open the VBA Editor(Alt-F11)</li>
<li>Type in the Code required starting with a sub name() and ending with an end sub. We could use the code in the previous article itself.<br />
<blockquote><p><span style="color:#3333ff;">Sub</span> BIU()<br />
<span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; BIU Macro</span><br />
<span style="color:#009900;">&#8216; Macro recorded 10/2/2006 by vr</span><br />
<span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; Keyboard Shortcut: Ctrl+Shift+I</span><br />
<span style="color:#009900;">&#8216;</span><br />
Selection.Font.Bold = <span style="color:#3333ff;">True</span><br />
Selection.Font.Italic = <span style="color:#3333ff;">True</span><br />
Selection.Font.Underline = xlUnderlineStyleSingle<br />
<span style="color:#3333ff;">End Sub</span></p></blockquote>
</li>
</ul>
<p>You are done!!<br />
Now if you take a look at the associated Excel sheet under &#8216;Macros&#8217;(Alt-F8), you will find a macro with the name you have just given. You may then go to &#8216;Options&#8217; and add a Shortcut key and Description if you so desire</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=29&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/creating-a-new-macro-directly-in-the-vba-editor/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>Limits of macros</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/limits-of-macros/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/limits-of-macros/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 21:23:13 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/limits-of-macros/</guid>
		<description><![CDATA[ This article explores what you can and cannot do with Macros.
For simple automation of tasks, any tasks, Macros are an extremely powerful tool. The Macro functionality in Microsoft Office is extremely mature and sophisticated. So chances are that what we have seen so far should be enough in 90% of the cases.
However, if you [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> This article explores what you can and cannot do with Macros.</p>
<p>For simple automation of tasks, any tasks, Macros are an extremely powerful tool. The Macro functionality in Microsoft Office is extremely mature and sophisticated. So chances are that what we have seen so far should be enough in 90% of the cases.</p>
<p>However, if you want to do any of the following things,</p>
<ul>
<li>Check for conditionality</li>
<li>Loop an action(Repeat the same action many times automatically without user intervention)</li>
<li>Create custom forms</li>
</ul>
<p>you will find the simple Macro creator insufficient for your needs. In such cases, you will have to resort to the extremely powerful and sophisticated VBA editor for your needs.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=28&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/limits-of-macros/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>First Look at the VBA Editor</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/first-look-at-the-vba-editor/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/first-look-at-the-vba-editor/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 21:22:40 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Software Tools]]></category>

		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/first-look-at-the-vba-editor/</guid>
		<description><![CDATA[ The Visual Basic for Applications Editor allows you to do almost anything with Microsoft Office Applications. Its potential is limited only by your imagination and ability. I have found it the most intuitive and the most effective tool for the creation of collaborative applications.
My only gripe against VBA is that its documentation literally sucks. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> The Visual Basic for Applications Editor allows you to do almost anything with Microsoft Office Applications. Its potential is limited only by your imagination and ability. I have found it the most intuitive and the most effective tool for the creation of collaborative applications.<br />
My only gripe against VBA is that its documentation literally sucks. If you are a seasoned programmer, you can make do with the documentation. But if you are new to VBA and want to learn it, it seems to be specifically designed to kill your interest and increase your frustration. Through this series of articles, I hope to enable a wider group of people to use this powerful tool.</p>
<p>And, believing in the adage that doing is much better than merely reading, let us delve into the beautiful world of VBA directly.</p>
<p>Let us take the example of the Macro that we created that makes cell contents &#8216;Bold&#8217;, &#8216;Italics&#8217; and &#8216;Underlined&#8217;. For your benefit, if you haven&#8217;t gone through the section on Macros, I&#8217;ll enter it here as blockquote</p>
<blockquote><p><font size="1"> Let us make the first macro very simple to begin with. I will guide you now, through the steps to create a macro that makes the text of a cell bold, italics and underlined. Three operations at one go.<br />
Procedure: </font></p>
<ul>
<li><font size="1">Select a Blank Cell</font></li>
<li><font size="1">Click on Tools-Macro-&gt;Record New Macro.<br />
[At this point a small window opens up. In this window,</font></p>
<ul>
<li><font size="1">Name your macro<br />
[Your macro should always have a meaningful name so that you can recognise it from the others you may create]</font></li>
<li><font size="1">Define a Shortcut Key for the Macro<br />
[Note: This shortcut key supercedes all other shortcut keys in excel as long as the Macro is active. For example, if you assign Ctrl-B to this macro, pressing Ctrl-B will only call this Macro. You therefore lose the ability to use Ctrl-B for Bold. My rule of Thumb is to use Ctrl-Shift-() for Macros]</font></li>
<li><font size="1">Define whether you want this macro available ony for the present workbook or globally. If you want it for every workbook, choose to store it in Personal Macro Workbook</font></li>
<li><font size="1">Give a brief description if required.<br />
[Now you will notice a small toolbar come up on the screen with just two buttons. One button stops the macro. The other is for relative references that we shall explore later.]</font></li>
</ul>
</li>
<li><font size="1">Click on the ‘Bold’, ‘Italic’ and ‘Underline’ buttons on the excel toolbar.</font></li>
<li><font size="1">Click on the ‘Stop Recording’ Button.</font></li>
</ul>
<p><font size="1">You are now done!<br />
To test it, select another cell and type something into it. Now use the shortcut key that you defined while creating the macro. and voila! you have bold, underlined and italicized text. <img src="http://rvconsulting.wordpress.com/wp-includes/images/smilies/icon_smile.gif" alt=")" class="wp-smiley" /></font></p></blockquote>
<p>Note: For the purpose of this exercise, please ensure that you make this macro available for the &#8216;Current Workbook&#8217; only while creating it.<br />
Now, you need to understand that what this entire operation does is to let Excel know the steps to take when you run the Macro. The problem is that Excel does not speak English quite as fluently as us. Hence we need to go down to its level and speak its language. What this process has done is to convert the actions that we have done into a &#8217;script&#8217; in the language that Excel speaks, which is Visual Basic for Applications(VBA).<br />
In order to see the steps in VBA, all you need to do is do the following:</p>
<ul>
<li>Go to <span style="font-weight:bold;">Tools-&gt;Macro-&gt;Macros</span></li>
<li><span style="font-weight:bold;"><span style="font-weight:bold;"></span></span>Choose the Macro that you have created</li>
<li>Choose &#8216;Edit&#8217;<br />
At this point, a new window opens up which will have 3 &#8216;mini screens&#8217;. Let us forget the screens and focus on the text instead. If you have done what I have asked you to do, your code will look something like this:</li>
</ul>
<blockquote><p><span style="color:#3333ff;">Sub</span> BIU()<br />
<span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; BIU Macro</span><br />
<span style="color:#009900;">&#8216; Macro recorded 10/2/2006 by vr</span><br />
<span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; Keyboard Shortcut: Ctrl+Shift+I</span><br />
<span style="color:#009900;">&#8216;</span><br />
Selection.Font.Bold = <span style="color:#3333ff;">True</span><br />
Selection.Font.Italic = <span style="color:#3333ff;">True</span><br />
Selection.Font.Underline = xlUnderlineStyleSingle<br />
<span style="color:#3333ff;">End Sub</span></p></blockquote>
<p>Let us try and analyze these statements keeping in mind that this is just the language that Excel speaks.</p>
<blockquote><p><span style="color:#3333ff;">Sub</span> BIU()</p>
<p><span style="color:#3333ff;">End Sub</span></p></blockquote>
<p>This tells Excel that what lies inbetween the Sub and End Sub is a series of steps. Excel calls this series of steps a <span style="font-weight:bold;">Subroutine</span>. And hence the word &#8216;Sub&#8217;. <span style="font-weight:bold;">BIU()</span> is the name that I gave my macro. And it basically tells Excel, that if this name is called, it must go ahead and execute the steps between Sub and End Sub.<br />
So why are some things in Blue and some in Black? Well, words like Sub, End Sub etc are reserved words in Excel. which means that Excel reserves to use them for its own purposes.</p>
<blockquote><p><span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; BIU Macro</span><br />
<span style="color:#009900;">&#8216; Macro recorded 10/2/2006 by vr</span><br />
<span style="color:#009900;">&#8216;</span><br />
<span style="color:#009900;">&#8216; Keyboard Shortcut: Ctrl+Shift+I</span><br />
<span style="color:#009900;">&#8216;</span></p></blockquote>
<p>The stuff in Green now. These are called <span style="font-weight:bold;">comments</span> and are ignored by Excel completely. They are meant only for information for the Users. You can create a comment by using the single apostrophe(&#8217;) at the beginning of the line.</p>
<blockquote><p>    Selection.Font.Bold = <span style="color:#3333ff;">True</span><br />
Selection.Font.Italic = <span style="color:#3333ff;">True</span><br />
Selection.Font.Underline = xlUnderlineStyleSingle</p></blockquote>
<p>Now we get to the meat of the subroutine. These three lines basically tell excel what to do.<br />
The word &#8216;Selection&#8217; means whatever has been selected. So this refers to either a single cell or multiple cells that you have selected before calling the macro. The rest of it is self explanatory.<br />
Now if you want to modify your macro, you can modify the code here. Lets try some modifications now with the limited knowledge that we possess at this stage.</p>
<p><span style="text-decoration:underline;">1. Remove the &#8216;bold&#8217; part.</span><br />
Hmm&#8230; in order to avoid making the cell bold we can delete the first line. Or even better still, let us comment it out. So put in the (&#8217;) symbol at the beginning of the line, go to the end of the line and hit enter. This changes the line into green thereby telling you it is now a comment. Now you can just close the VBA window, go back to excel and run your macro. you will see that it now has only italics and underline and no bold.</p>
<p><span style="text-decoration:underline;">2. Underline in a different syle<br />
</span>Ok. you can see from the code that underline basically is in the form &#8216;xlUnderlineStyleSingle&#8217; which I would take logically to be a Single Line Underline. Does that mean that there can be an &#8216;xlUnderlineStyleDouble&#8217;? Let us try. Let us change the line 3 to read</p>
<blockquote><p><span style="text-decoration:underline;"></span>Selection.Font.Underline = xlUnderlineStyleDouble</p></blockquote>
<p>Now if I go to excel and try the macro&#8230; Well whaddya know it works!!! Whoopeeeeee!!!!</p>
<p><span style="font-weight:bold;text-decoration:underline;">Conclusion.<br />
</span>You have now seen a very simple example of modifying a VBA subroutine and getting it to work for you. Now in order to proceed further, you need to know three things.</p>
<ul>
<li>Excel Object Model</li>
<li>How Excel handles errors in your code</li>
<li>How to ask Excel for help</li>
</ul>
<p>These topics shall be the subject of our further articles. Once we get these under our belts, we shall then go on to creating much more useful and complex subroutines in excel.<br />
<span style="font-weight:bold;text-decoration:underline;"></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=27&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/first-look-at-the-vba-editor/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>

		<media:content url="http://rvconsulting.wordpress.com/wp-includes/images/smilies/icon_smile.gif" medium="image">
			<media:title type="html">)</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating our first Macro</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/creating-our-first-macro/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/creating-our-first-macro/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 20:02:26 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/creating-our-first-macro/</guid>
		<description><![CDATA[ Let us make the first macro very simple to begin with. I will guide you now, through the steps to create a macro that makes the text of a cell bold, italics and underlined. Three operations at one go.Procedure:

Select a Blank Cell
Click on Tools-LMacro-&#62;Record New Macro.[At this point a small window opens up. In [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Let us make the first macro very simple to begin with. I will guide you now, through the steps to create a macro that makes the text of a cell bold, italics and underlined. Three operations at one go.<br />Procedure:
<ul>
<li>Select a Blank Cell</li>
<li>Click on Tools-LMacro-&gt;Record New Macro.<br />[At this point a small window opens up. In this window,</li>
<ul>
<li>Name your macro<br />[Your macro should always have a meaningful name so that you can recognise it from the others you may create]</li>
<li>Define a Shortcut Key for the Macro<br />[Note: This shortcut key supercedes all other shortcut keys in excel as long as the Macro is active. For example, if you assign Ctrl-B to this macro, pressing Ctrl-B will only call this Macro. You therefore lose the ability to use Ctrl-B for Bold. My rule of Thumb is to use Ctrl-Shift-() for Macros]</li>
<li>Define whether you want this macro available ony for the present workbook or globally. If you want it for every workbook, choose to store it in Personal Macro Workbook</li>
<li>Give a brief description if required.<br />[Now you will notice a small toolbar come up on the screen with just two buttons. One button stops the macro. The other is for relative references that we shall explore later.]</li>
</ul>
<li>Click on the &#8216;Bold&#8217;, &#8216;Italic&#8217; and &#8216;Underline&#8217; buttons on the excel toolbar.</li>
<li>Click on the &#8216;Stop Recording&#8217; Button.</li>
</ul>
<p>You are now done!<br />To test it, select another cell and type something into it. Now use the shortcut key that you defined while creating the macro. and voila! you have bold, underlined and italicized text. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=25&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/creating-our-first-macro/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling Macros in Excel</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/enabling-macros-in-excel/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/enabling-macros-in-excel/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 17:08:14 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft PowerPoint]]></category>

		<category><![CDATA[Microsoft Word]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/enabling-macros-in-excel/</guid>
		<description><![CDATA[ Q: How do I enable Macros in Excel?
A: Go to     Tools-&#62;Options
Security
Macro Security
All you need to do now is change the setting to medium or low. Medium will ask you before a macro is run and is the setting I use most often. Low will run macros without asking and can [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Q: How do I enable Macros in Excel?<br />
A: Go to     <span style="font-weight:bold;">Tools-&gt;Options</span><br />
<span style="font-weight:bold;">Security<br />
Macro Security<br />
<span style="font-weight:bold;"></span></span>All you need to do now is change the setting to medium or low. Medium will ask you before a macro is run and is the setting I use most often. Low will run macros without asking and can be dangerous.<span style="font-weight:bold;"><br />
</span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=24&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/enabling-macros-in-excel/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>What IS a Macro?</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/what-is-a-macro/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/what-is-a-macro/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 17:07:53 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Microsoft PowerPoint]]></category>

		<category><![CDATA[Microsoft Word]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/what-is-a-macro/</guid>
		<description><![CDATA[ A macro is just  a set of tasks stored together under a common name.
A task is anything that you do in Excel, powerpoint, Word, etc.
For example, when you make a text bold, it is a task. So is putting a border around a cell, importing a document, etc. In many cases, we find [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> A macro is just  a set of tasks stored together under a common name.<br />
A task is anything that you do in Excel, powerpoint, Word, etc.<br />
For example, when you make a text bold, it is a task. So is putting a border around a cell, importing a document, etc. In many cases, we find that we are repeating a series of tasks again and again. Using a macro, we can group these tasks together, and invoke them using a name that we give, using a shortcut key, a button on a toolbar or a Menu Item(only from Office 2002).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=23&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/what-is-a-macro/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>Calling a Macro</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/calling-a-macro/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/calling-a-macro/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 17:07:28 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Microsoft PowerPoint]]></category>

		<category><![CDATA[Microsoft Word]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/calling-a-macro/</guid>
		<description><![CDATA[ A Macro can be called in any of the 4 ways listed below:

Through the Tools Menu
Go to Tools-&#62;Macro-&#62;Macros (or hit Alt-F 
Choose the Macro you want to run
Choose &#8216;Run&#8217;
Use the Shortcut Key that you defined when you created the Macro
If you have assigned the Macro to a button, click on the respective button on [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> A Macro can be called in any of the 4 ways listed below:</p>
<ol>
<li>Through the Tools Menu<br />
Go to Tools-&gt;Macro-&gt;Macros (or hit Alt-F <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /><br />
Choose the Macro you want to run<br />
Choose &#8216;Run&#8217;</li>
<li>Use the Shortcut Key that you defined when you created the Macro</li>
<li>If you have assigned the Macro to a button, click on the respective button on the toolbar</li>
<li>If you have assigned the Macro to a Menu item, click on the respective Menu Item.</li>
</ol>
<p>The last three options need you to have specifically created options for these actions. A shortcut key can be assigned while creating the Macro itself. For information on how to assign a Macro to a button and a Menu Item, read the respective posts.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=22&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/calling-a-macro/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>Assigning a Macro to a Button</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-button/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-button/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 17:07:05 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Microsoft PowerPoint]]></category>

		<category><![CDATA[Microsoft Word]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-button/</guid>
		<description><![CDATA[ Q: How do I create a new button and assign a Macro to it?
A:

Right click on any toolbar and choose &#8216;Customize&#8217;.
Choose &#8216;Commands&#8217; Tab
Click on &#8216;Custom Button&#8217; &#38; Drag it onto the toolbar
With the &#8216;Customize&#8217; box still open, Right click on the dragged button &#38; Choose Assign Macro
Choose the required Macro
Click OK
Optional-You may also change [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Q: How do I create a new button and assign a Macro to it?<br />
A:</p>
<ul>
<li>Right click on any toolbar and choose &#8216;Customize&#8217;.</li>
<li>Choose &#8216;Commands&#8217; Tab</li>
<li>Click on &#8216;Custom Button&#8217; &amp; Drag it onto the toolbar</li>
<li><span style="font-weight:bold;">With the &#8216;Customize&#8217; box still open</span>, Right click on the dragged button &amp; Choose Assign Macro</li>
<li>Choose the required Macro</li>
<li>Click OK</li>
<li>Optional-You may also change the Name of the Button, the Image etc. by right clicking on it <span style="font-weight:bold;">with the &#8216;Customize&#8217; box still open.</span></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=21&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-button/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
		<item>
		<title>Assigning a Macro to a Menu Item</title>
		<link>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-menu-item/</link>
		<comments>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-menu-item/#comments</comments>
		<pubDate>Sun, 01 Oct 2006 17:06:45 +0000</pubDate>
		<dc:creator>rvconsulting</dc:creator>
		
		<category><![CDATA[Macros]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Microsoft PowerPoint]]></category>

		<category><![CDATA[Microsoft Word]]></category>

		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-menu-item/</guid>
		<description><![CDATA[ Q: How do I create a new Menu Item and assign a Macro to it?
A:

Right click on any toolbar and choose &#8216;Customize&#8217;.
Choose &#8216;Commands&#8217; Tab
Click on &#8216;Custom Menu Item&#8217; &#38; Drag it onto the toolbar
With the &#8216;Customize&#8217; box still open, Right click on the dragged Menu Item &#38; Choose Assign Macro
Choose the required Macro
Click OK
Optional-You [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Q: How do I create a new Menu Item and assign a Macro to it?<br />
A:</p>
<ul>
<li>Right click on any toolbar and choose &#8216;Customize&#8217;.</li>
<li>Choose &#8216;Commands&#8217; Tab</li>
<li>Click on &#8216;Custom Menu Item&#8217; &amp; Drag it onto the toolbar</li>
<li><span style="font-weight:bold;">With the &#8216;Customize&#8217; box still open</span>, Right click on the dragged Menu Item &amp; Choose Assign Macro</li>
<li>Choose the required Macro</li>
<li>Click OK</li>
<li>Optional-You may also change the Name of the Menu Item, or assign an image etc. by right clicking on it <span style="font-weight:bold;">with the &#8216;Customize&#8217; box still open.</span></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rvconsulting.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rvconsulting.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rvconsulting.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rvconsulting.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rvconsulting.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rvconsulting.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rvconsulting.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rvconsulting.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rvconsulting.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rvconsulting.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rvconsulting.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rvconsulting.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rvconsulting.wordpress.com&blog=448007&post=20&subd=rvconsulting&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rvconsulting.wordpress.com/2006/10/01/assigning-a-macro-to-a-menu-item/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/rvconsulting-128.jpg" medium="image">
			<media:title type="html">rvconsulting</media:title>
		</media:content>
	</item>
	</channel>
</rss>