<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.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>Week Numbers in Excel</title><link>http://blogs.msdn.com/excel/archive/2009/06/30/week-numbers-in-excel.aspx</link><description>Today’s author is, Ron de Bruin, an Excel MVP . You can find more useful tips from Ron and links to Excel add-ins at his website: http://www.rondebruin.nl/ There are four primary week numbering systems in use worldwide. Each system has subtle differences</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Week Numbers in Excel</title><link>http://blogs.msdn.com/excel/archive/2009/06/30/week-numbers-in-excel.aspx#9821002</link><pubDate>Tue, 07 Jul 2009 03:04:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9821002</guid><dc:creator>Dan Slaby</dc:creator><description>&lt;p&gt;Is there an easy way to pick the first Tuesday, etc of every month for the full year?&lt;/p&gt;
</description></item><item><title>re: Week Numbers in Excel</title><link>http://blogs.msdn.com/excel/archive/2009/06/30/week-numbers-in-excel.aspx#9822930</link><pubDate>Tue, 07 Jul 2009 19:51:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9822930</guid><dc:creator>Ron de Bruin</dc:creator><description>&lt;p&gt;Hi Dan&lt;/p&gt;
&lt;p&gt;with a date in A2 this will say true if it is the first Tuesday of the month&lt;/p&gt;
&lt;p&gt;=IF(AND(WEEKDAY(A2,2)=2,DAY(A2)&amp;lt;=7),TRUE,&amp;quot;&amp;quot;)&lt;/p&gt;
</description></item><item><title>re: Week Numbers in Excel</title><link>http://blogs.msdn.com/excel/archive/2009/06/30/week-numbers-in-excel.aspx#9825630</link><pubDate>Thu, 09 Jul 2009 07:34:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9825630</guid><dc:creator>Harlan Grove</dc:creator><description>&lt;p&gt;Dan, if you mean given any date x you want the first Tuesday of the month in which x falls, try&lt;/p&gt;
&lt;p&gt;=x-DAY(x)+7-WEEKDAY(x-DAY(x)-1,3)&lt;/p&gt;
&lt;p&gt;x-DAY(x) is the last day of the preceding month. WEEKDAY(y,3) returns 1 when y is a Tuesday, so this generalizes to&lt;/p&gt;
&lt;p&gt;=x-DAY(x)+7-WEEKDAY(x-DAY(x)-d,3)&lt;/p&gt;
&lt;p&gt;where d is the value WEEKDAY(y,3) would return for the for the desired day of the week, so 0 for Monday, 1 for Tuesday, 2 for Wednesday, etc.&lt;/p&gt;
</description></item></channel></rss>