<?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>Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx</link><description>Hi everyone, This is Amber from the SharePoint Designer Data team. This post walks you through using calculated fields in Windows SharePoint Services (WSS) to show items from the Current month. Lots of posts cover the use of calculated fields, but none</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8828735</link><pubDate>Mon, 04 Aug 2008 10:36:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8828735</guid><dc:creator>Mindaugas</dc:creator><description>&lt;p&gt;Just tried to create Today’s Date column and turn my calendar one day forward. Today’s Date value left the same, so it isn't pointing to real today. What are you doing here is the same as to use default Created column value because Calculated value is calculated just once when the item is created. I think there is a simpler solution to this. You could create Calculated colum like this NextMonth=DATE(YEAR([Created]), MONTH([Created])+1, 1) and then in your view filter use condition NextMonth &amp;gt; [Today] what means that you need to shows those items where today is still less then the first day of the next month (from item's Created column value).&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8831180</link><pubDate>Mon, 04 Aug 2008 17:39:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8831180</guid><dc:creator>wellick</dc:creator><description>&lt;p&gt;I wonder if Amber (author of this post) even bothered to test this &amp;quot;recipe&amp;quot; before posting it to an official SPD blog.&lt;/p&gt;
&lt;p&gt;Just as Mndaugas said, this doesn't work. [Today] is only calculated on item creation and edit, not every time list item is accessed.&lt;/p&gt;
&lt;p&gt;Now, please, whoever posts to this blog - check your solutions before posting them. Or at least google them up. Filtering by [Today] and why it doesn't work has been discussed a hell lot of times already.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8833262</link><pubDate>Tue, 05 Aug 2008 09:48:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8833262</guid><dc:creator>Stefan</dc:creator><description>&lt;p&gt;The solution posted is not working. I fully agree with wellick's comment!&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8836238</link><pubDate>Wed, 06 Aug 2008 09:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8836238</guid><dc:creator>will</dc:creator><description>&lt;p&gt;As previously mentioned filtering using [today] one a default view will not work. &amp;nbsp;If you want to filter using [today] you will need to use SPD and create a data view you can then use xslt in the filter and do it.&lt;/p&gt;
&lt;p&gt;Unfortunatly the version of xslt that ships with Sharepoint 2007 is very limited and can be a pain so it is often better to mix calculated columns and xslt instead of doing it all in xslt.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8840292</link><pubDate>Thu, 07 Aug 2008 08:29:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8840292</guid><dc:creator>TobZ</dc:creator><description>&lt;p&gt;Then Wellick, you should be able to solve the problem.&lt;/p&gt;
&lt;p&gt;This is a good tip for people starting out with calculated values etc, the meaning isn't to provide full-scale solutions. If this doesn't suit your needs, you are free to customize this solution and do whatever changes you'd like.&lt;/p&gt;
&lt;p&gt;Instead of picking on people who provide FREE support and assistance, you should perhaps show some appreciation.&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8843851</link><pubDate>Fri, 08 Aug 2008 20:20:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8843851</guid><dc:creator>Ant Cee</dc:creator><description>&lt;p&gt;Amber- you suc!! &amp;nbsp;Seriously, check the web, this solution doesn't address the core problem of being unable to create a [Today] calculated column that dynamically updates the current date on a daily basis. &amp;nbsp;Maybe Amber should talk to Bill G. about why MS bugs need to be discovered &amp;amp; flushed out by his customers rather than his programmers??&lt;/p&gt;
&lt;p&gt;AC&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8844472</link><pubDate>Sat, 09 Aug 2008 01:17:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8844472</guid><dc:creator>Abahl</dc:creator><description>&lt;p&gt;Thanks for the feedback guys. I have updated the post to work around the problem that you guys are hitting. &lt;/p&gt;
&lt;p&gt;Hope this helps. &lt;/p&gt;
&lt;p&gt;Thanks, &lt;/p&gt;
&lt;p&gt;Amber&lt;/p&gt;</description></item><item><title>SharePoint Designer Tipps</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8850465</link><pubDate>Tue, 12 Aug 2008 13:37:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8850465</guid><dc:creator>Michael Greth MVP SharePoint Blog</dc:creator><description>&lt;p&gt;Hier habe ich ein paar Tipps zum SharePoint Designer zusammengestellt: Use SharePoint Designer to Email&lt;/p&gt;
</description></item><item><title>SharePoint Designer Tipps</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8850550</link><pubDate>Tue, 12 Aug 2008 14:33:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8850550</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;Hier habe ich ein paar Tipps zum SharePoint Designer zusammengestellt: Use SharePoint Designer to Email&lt;/p&gt;
</description></item><item><title>SharePoint Designer Tipps</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8851387</link><pubDate>Tue, 12 Aug 2008 16:58:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8851387</guid><dc:creator>Michael Greth MVP SharePoint Blog</dc:creator><description>&lt;p&gt;Hier habe ich ein paar Tipps zum SharePoint Designer zusammengestellt: Use SharePoint Designer to Email&lt;/p&gt;
</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8859603</link><pubDate>Wed, 13 Aug 2008 20:17:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8859603</guid><dc:creator>Adam</dc:creator><description>&lt;p&gt;Did you guys fix the problem? I'm still trying but the propsed solution doesn't work... &lt;/p&gt;
&lt;p&gt;@Amber: why are you screen shots different from your writing??? E.G. you say in step 1 'Taday' but on your screen shot there's 'Today's date'&lt;/p&gt;
&lt;p&gt;That's mess...&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8867075</link><pubDate>Thu, 14 Aug 2008 18:23:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8867075</guid><dc:creator>Christophe</dc:creator><description>&lt;p&gt;In my opinion the “Today” column is useless, I have explained it here:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://pathtosharepoint.wordpress.com/2008/08/14/calculated-columns-the-useless-today-trick/"&gt;http://pathtosharepoint.wordpress.com/2008/08/14/calculated-columns-the-useless-today-trick/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>SPPD102 SharePointPodcast</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8867812</link><pubDate>Thu, 14 Aug 2008 23:07:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8867812</guid><dc:creator>Michael Greth MVP SharePoint Blog</dc:creator><description>&lt;p&gt;Direkter Download: SPPD-102-2008-08-14 Aktuell Feedback Usergruppen ISPA International SharePoint Professionals&lt;/p&gt;
</description></item><item><title>SPPD102 SharePointPodcast</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8867875</link><pubDate>Thu, 14 Aug 2008 23:38:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8867875</guid><dc:creator>Mirrored Blogs</dc:creator><description>&lt;p&gt;Direkter Download: SPPD-102-2008-08-14 Aktuell Feedback Usergruppen ISPA International SharePoint Professionals&lt;/p&gt;
</description></item><item><title>WSS 3.0 &amp; MOSS: Recopilatorio de enlaces interesantes (XX)!</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8879685</link><pubDate>Tue, 19 Aug 2008 23:29:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8879685</guid><dc:creator>Blog del CIIN</dc:creator><description>&lt;p&gt;Pues nada, dicen que las tradiciones est&amp;#225;n para mantenerlas en el tiempo y eso es lo que espero hacer&lt;/p&gt;
</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8885006</link><pubDate>Thu, 21 Aug 2008 17:37:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8885006</guid><dc:creator>Adaickalavan P</dc:creator><description>&lt;p&gt;All the workarounds fail in one or the other way. So, Microsoft have to add 'today' option for calculation. That would be the only solution.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#8971594</link><pubDate>Wed, 01 Oct 2008 16:47:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8971594</guid><dc:creator>Sherice</dc:creator><description>&lt;p&gt;Adding the [Today] column worked great for what I was trying to do. &amp;nbsp;I am using it to track the progress of projects, and I simply want to know if a project is On Schedule or Late for a report I need for my boss. &amp;nbsp;The work around worked fine for this purpose.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9172422</link><pubDate>Thu, 04 Dec 2008 02:50:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9172422</guid><dc:creator>Killab</dc:creator><description>&lt;p&gt;You need to create a text only column and Title it &amp;quot;Today.&amp;quot; &amp;nbsp;Create your calculated column and reference the today. &amp;nbsp;Once the Today column is deleted Sarepoint treats it as a &amp;quot;Today&amp;quot; variable.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9187643</link><pubDate>Tue, 09 Dec 2008 21:15:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9187643</guid><dc:creator>CodeManWA</dc:creator><description>&lt;p&gt;Worked great for me. &amp;nbsp;Thanks Amber:)&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9253861</link><pubDate>Sat, 27 Dec 2008 00:18:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9253861</guid><dc:creator>Nate</dc:creator><description>&lt;p&gt;I've done this by running a designer workflow to touch each item each day, but its a PITA. MS really dropped the ball on date filtering for lists in sharepoint. This is something that really needs addressed if SP wants to be taken seriously out-of-the-box (instead of having a bunch of devs write up a bunch of custom code).&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9895139</link><pubDate>Tue, 15 Sep 2009 00:17:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9895139</guid><dc:creator>QG</dc:creator><description>&lt;p&gt;This worked great Amber thanks! I don't know what all these other guys are talking about. if they follow the instructions it works... &lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9913442</link><pubDate>Tue, 27 Oct 2009 11:36:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9913442</guid><dc:creator>Silvia</dc:creator><description>&lt;p&gt;The solution works perfect for me, I had Have to change the separator comma by the semicolom because in my sharepoint have installed Spanish languaje pack and it uses the comma as decimal comma.&lt;/p&gt;
&lt;p&gt;The formula that works in my site is: =IF(MONTH([Today])=MONTH([Request Date]);&amp;quot;Yes&amp;quot;;&amp;quot;No&amp;quot;)&lt;/p&gt;
&lt;p&gt;Thank you for your post. &lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9914928</link><pubDate>Thu, 29 Oct 2009 20:36:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9914928</guid><dc:creator>David</dc:creator><description>&lt;p&gt;If you have Problems to Query the Calculated Field read my Blog:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.schonebeck.net/?p=5"&gt;http://www.schonebeck.net/?p=5&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9916158</link><pubDate>Mon, 02 Nov 2009 15:05:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9916158</guid><dc:creator>Brent</dc:creator><description>&lt;p&gt;This technique DOES work however has the limitation that the &amp;quot;Yes/No&amp;quot; value calculated only at item creation time or when the &amp;quot;today&amp;quot; column is added and subsequently deleted. &amp;nbsp; You will find that as the current crosses into a new month, the &amp;quot;OpenedThisMonth&amp;quot; column will not be automatically recalculated.&lt;/p&gt;
&lt;p&gt;To make this a viable solution, someone with list admin privileges would need to recreate the fake today column and delete it again manually each month.&lt;/p&gt;</description></item><item><title>re: Date Functions in Calculated Fields</title><link>http://blogs.msdn.com/sharepointdesigner/archive/2008/08/01/date-functions-in-calculated-fields.aspx#9929370</link><pubDate>Fri, 27 Nov 2009 12:16:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9929370</guid><dc:creator>Ryan</dc:creator><description>&lt;p&gt;I don't get why people keep saying &amp;quot;the Today trick works - it just doesn't update&amp;quot;? Doesn't that make it about as useful as a parachute that opens... 5 foot above the ground? ;) &lt;/p&gt;
&lt;p&gt;I've talked the today trick here - &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blog.pentalogic.net/2008/11/truth-about-using-today-in-calculated-columns/"&gt;http://blog.pentalogic.net/2008/11/truth-about-using-today-in-calculated-columns/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;@Brent - the abve also includes some links to workarounds by Dessie such as a batch job &amp;nbsp;that can automatically add/remove the column to keep it up to date.&lt;/p&gt;
&lt;p&gt;I've also blogged about an alternative method for filtering items from the current/previous calendar month&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blog.pentalogic.net/2009/11/howto-filter-items-current-calendar-month-view-sharepoint/"&gt;http://blog.pentalogic.net/2009/11/howto-filter-items-current-calendar-month-view-sharepoint/&lt;/a&gt;&lt;/p&gt;</description></item></channel></rss>