<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.office.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx</link><description>This post written by Daniel Ferry, an Excel MVP, chronicles how he and Beth Melton, a fellow MVP, designed a Gradebook template in Excel that makes teachers&amp;rsquo; lives a whole lot easier. Several teachers, however, wanted to make the template even more</description><dc:language>en-US</dc:language><generator>Telligent Community 1.5.134.15456 (Build: 5.5.134.15456)</generator><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28979</link><pubDate>Mon, 26 Dec 2011 12:19:05 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28979</guid><dc:creator>GoodwinMeyers</dc:creator><description>&lt;p&gt;Thanks so much for the post! It really got more handy this way. I used to resort to PDF converter &lt;a rel="nofollow" target="_new" href="http://openpdfconverter.com/"&gt;http://openpdfconverter.com/&lt;/a&gt; in this case and now there&amp;#39;s no need to.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28979" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28976</link><pubDate>Mon, 26 Dec 2011 10:26:16 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28976</guid><dc:creator>Brucem77</dc:creator><description>&lt;p&gt;I found your resume blog very useful. Thanks for the information&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://sampleresumedirectory.com/teachers-resume"&gt;sampleresumedirectory.com/teachers-resume&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28976" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28928</link><pubDate>Thu, 22 Dec 2011 13:47:45 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28928</guid><dc:creator>Me Happy</dc:creator><description>&lt;p&gt;Hello all, &lt;/p&gt;
&lt;p&gt;I have formula or VBA problem and I&amp;#39;m hoping can help me. My column A contains the formula =Today()&lt;/p&gt;
&lt;p&gt;Now based on dates on want to have a custom message that will appear depending on the due date and the finised date. &lt;/p&gt;
&lt;p&gt;so basically I need something like this.&lt;/p&gt;
&lt;p&gt;=IF A&amp;gt;E;&amp;quot;LATE&amp;quot; = Late&lt;/p&gt;
&lt;p&gt;=IF A&amp;lt;=E;&amp;quot;PENDING&amp;quot; = Pending&lt;/p&gt;
&lt;p&gt;and my last would be if the colomn (finished date is not null) then case follow-up = Terminated&lt;/p&gt;
&lt;p&gt;Hope this is making any sense&lt;/p&gt;
&lt;p&gt;Thanks for any help&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28928" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28807</link><pubDate>Wed, 14 Dec 2011 01:18:32 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28807</guid><dc:creator>David Fuji</dc:creator><description>&lt;p&gt;Good Post Daniel, I found it very useful. Is it possible to use a pivot table as the named range for the variant?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28807" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28739</link><pubDate>Tue, 06 Dec 2011 00:07:06 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28739</guid><dc:creator>Joe Tandle</dc:creator><description>&lt;p&gt;I really like this post Daniel. Thanks for putting it up. I found an easy VBA script to do something on any dynamic range that is really useful.&lt;/p&gt;
&lt;p&gt;Sub OnlyDoIfValue()&lt;/p&gt;
&lt;p&gt;Dim lastrow As Long, mycell As Object&lt;/p&gt;
&lt;p&gt;‘Find the last row in Excel&lt;/p&gt;
&lt;p&gt;Range(“a65000″).End(xlUp).Select&lt;/p&gt;
&lt;p&gt;lastrow = ActiveCell.Row&lt;/p&gt;
&lt;p&gt;‘Define the Dynamic Range&lt;/p&gt;
&lt;p&gt;Set myRange = Range(“b1:b” &amp;amp; lastrow)&lt;/p&gt;
&lt;p&gt;For Each mycell In myRange&lt;/p&gt;
&lt;p&gt;‘Puts in something to the right of the range&lt;/p&gt;
&lt;p&gt;mycell.Offset(0, 1) = “Something”&lt;/p&gt;
&lt;p&gt;Next&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
&lt;p&gt;taken from:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://newyorkinteractivemedia.com/training_class_blog/index.php/2011/12/excel-2010-macro-dynamic-range/"&gt;newyorkinteractivemedia.com/.../excel-2010-macro-dynamic-range&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28739" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28646</link><pubDate>Sat, 26 Nov 2011 01:56:30 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28646</guid><dc:creator>PremSivakanthan</dc:creator><description>&lt;p&gt;Great post Daniel..! Interesting how you use the vStudents variant variable: you havent used any parentheses after dimensioning it, and you havent used a redim statement to size it either. I&amp;#39;ve always done both of these when using variant array variables like this (because I thought I had to). Can anybody shed light on this?? Prem&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28646" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28643</link><pubDate>Thu, 24 Nov 2011 14:16:44 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28643</guid><dc:creator>smabres</dc:creator><description>&lt;p&gt;Very nice example for Tables, classic programing, nothing fancy yet exquisite, thanks so much.&lt;/p&gt;
&lt;p&gt;Sergio&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28643" width="1" height="1"&gt;</description></item><item><title>re: When a macro won't cut it, try a VBA script</title><link>http://blogs.office.com/b/microsoft-excel/archive/2011/11/22/excel-2010-macro-versus-vba-script.aspx#28631</link><pubDate>Wed, 23 Nov 2011 08:52:50 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:28631</guid><dc:creator>ShelLuser</dc:creator><description>&lt;p&gt;Very good post, kudo&amp;#39;s to you! &amp;nbsp;The usefulness of VBA cannot be stressed out enough in my opinion. It really looks much more intimidating than it actually is and taking the time to become more familiar with it can actually safe you lots of time in the long run.&lt;/p&gt;
&lt;p&gt;When done right the sky can become the limit here. VBA can even go as far as accessing remote data which can then be made available in your Office environment.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=28631" width="1" height="1"&gt;</description></item></channel></rss>