<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: HowTo: Using SharePoint Calculated Columns to Display a List Item as &quot;X&quot; Days Old</title>
	<atom:link href="http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/feed/" rel="self" type="application/rss+xml" />
	<link>http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/</link>
	<description>Just another VSPUG - Virtual SharePoint User Group weblog</description>
	<lastBuildDate>Thu, 18 Feb 2010 08:00:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Stephen Graham</title>
		<link>http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/#comment-305</link>
		<dc:creator>Stephen Graham</dc:creator>
		<pubDate>Thu, 18 Feb 2010 08:00:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-305</guid>
		<description>Hi there

Does anyone know any easier way for me to be able to group an Actions Log by Modified Date (but have it grouped as below rather than by each date?):

-Today
-Yesterday
-The Week
-Last Week
-This Month
-Last Month
-Older

Would appreciate the help!

Stephen</description>
		<content:encoded><![CDATA[<p>Hi there</p>
<p>Does anyone know any easier way for me to be able to group an Actions Log by Modified Date (but have it grouped as below rather than by each date?):</p>
<p>-Today<br />
-Yesterday<br />
-The Week<br />
-Last Week<br />
-This Month<br />
-Last Month<br />
-Older</p>
<p>Would appreciate the help!</p>
<p>Stephen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ismail</title>
		<link>http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/#comment-254</link>
		<dc:creator>Ismail</dc:creator>
		<pubDate>Mon, 25 Jan 2010 14:57:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-254</guid>
		<description>Hi,

Thanks for the solution. Has anyone tried this? I cant seem to get it right. I&#039;m actually trying it on a calculated field that calculates a currency value for me, as opposed to a &quot;Today&quot; field.

Has any other solutions surfaced?

Kind regards,
Ismail</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the solution. Has anyone tried this? I cant seem to get it right. I&#8217;m actually trying it on a calculated field that calculates a currency value for me, as opposed to a &#8220;Today&#8221; field.</p>
<p>Has any other solutions surfaced?</p>
<p>Kind regards,<br />
Ismail</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelton Thompson</title>
		<link>http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/#comment-183</link>
		<dc:creator>Shelton Thompson</dc:creator>
		<pubDate>Tue, 15 Dec 2009 20:14:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-183</guid>
		<description>Ok, I too am an admin for a company.  Were trying to use KPI&#039;s that will turn Green if an update to a list was done witin 3 days of the current date.  If it is more than 3 days of the current date then the KPI should indicate red.</description>
		<content:encoded><![CDATA[<p>Ok, I too am an admin for a company.  Were trying to use KPI&#8217;s that will turn Green if an update to a list was done witin 3 days of the current date.  If it is more than 3 days of the current date then the KPI should indicate red.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodrigo</title>
		<link>http://vspug.com/mkruger/2007/06/26/howto-using-sharepoint-calculated-columns-to-display-a-list-item-as-quot-x-quot-days-old/#comment-182</link>
		<dc:creator>Rodrigo</dc:creator>
		<pubDate>Tue, 15 Dec 2009 13:20:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-182</guid>
		<description>Here is a way to create /delete column &quot;Today&quot; automatically:


First of all, sorry about my poor english. 

I spent days looking for a solution for &quot;Today&quot; issue. I don&#039;t know anything about programming, I am system admin so It was kind of hard.

So this is my workaround to solve it using the dumb column &quot;today&quot; and the fantastic extra functions for stsadm.


1.- Download wsp for custom properties of stsadm
http://stsadm.blogspot.com/

2.- In any list create field &quot;Today&quot; manually

3.- Export field &quot;Today&quot; into a xml file:

stsadm –o gl-exportlistfield -url &quot;&quot;http://server/site1/SourceList/AllItems.aspx&quot; -fielddisplayname &quot;Today&quot; -outputfile &quot;c:\Today.xml&quot;


4.- Import and delete column &quot;Today&quot; into your site. It will update your values

stsadm -o gl-importlistfield -url &quot;http://server/site1/List1/AllItems.aspx&quot; -inputfile &quot;c:\TodayCol.xml&quot;

stsadm -o gl-deletelistfield -url &quot;http://server/site1/List1/AllItems.aspx&quot; -fielddisplayname &quot;Today&quot;

5.- Create BAT file with the point 4 and schedule it to run once on weekdays.


PS: In case you don&#039;t know how work with BAT files:
run CMD

then run this commands:
___________________________________________________
cd\
cd:

copy con refreshToday.bat

Echo. Refresh column today

stsadm -o gl-importlistfield -url &quot;http://server/site1/List1/AllItems.aspx&quot; -inputfile &quot;c:\TodayCol.xml&quot;

stsadm -o gl-deletelistfield -url &quot;http://server/site1/List1/AllItems.aspx&quot; -fielddisplayname &quot;Today&quot;

(Ctrl +Z)

schtasks /create /tn &quot;Refresh Today&quot; /tr c:\refreshToday.bat /sc daily /mo 24 /st 01:00:00 /sd 12/15/2009

exit
_________________________________________________</description>
		<content:encoded><![CDATA[<p>Here is a way to create /delete column &#8220;Today&#8221; automatically:</p>
<p>First of all, sorry about my poor english. </p>
<p>I spent days looking for a solution for &#8220;Today&#8221; issue. I don&#8217;t know anything about programming, I am system admin so It was kind of hard.</p>
<p>So this is my workaround to solve it using the dumb column &#8220;today&#8221; and the fantastic extra functions for stsadm.</p>
<p>1.- Download wsp for custom properties of stsadm<br />
<a href="http://stsadm.blogspot.com/" rel="nofollow">http://stsadm.blogspot.com/</a></p>
<p>2.- In any list create field &#8220;Today&#8221; manually</p>
<p>3.- Export field &#8220;Today&#8221; into a xml file:</p>
<p>stsadm –o gl-exportlistfield -url &#8220;&#8221;http://server/site1/SourceList/AllItems.aspx&#8221; -fielddisplayname &#8220;Today&#8221; -outputfile &#8220;c:\Today.xml&#8221;</p>
<p>4.- Import and delete column &#8220;Today&#8221; into your site. It will update your values</p>
<p>stsadm -o gl-importlistfield -url &#8220;http://server/site1/List1/AllItems.aspx&#8221; -inputfile &#8220;c:\TodayCol.xml&#8221;</p>
<p>stsadm -o gl-deletelistfield -url &#8220;http://server/site1/List1/AllItems.aspx&#8221; -fielddisplayname &#8220;Today&#8221;</p>
<p>5.- Create BAT file with the point 4 and schedule it to run once on weekdays.</p>
<p>PS: In case you don&#8217;t know how work with BAT files:<br />
run CMD</p>
<p>then run this commands:<br />
___________________________________________________<br />
cd\<br />
cd:</p>
<p>copy con refreshToday.bat</p>
<p>Echo. Refresh column today</p>
<p>stsadm -o gl-importlistfield -url &#8220;http://server/site1/List1/AllItems.aspx&#8221; -inputfile &#8220;c:\TodayCol.xml&#8221;</p>
<p>stsadm -o gl-deletelistfield -url &#8220;http://server/site1/List1/AllItems.aspx&#8221; -fielddisplayname &#8220;Today&#8221;</p>
<p>(Ctrl +Z)</p>
<p>schtasks /create /tn &#8220;Refresh Today&#8221; /tr c:\refreshToday.bat /sc daily /mo 24 /st 01:00:00 /sd 12/15/2009</p>
<p>exit<br />
_________________________________________________</p>
]]></content:encoded>
	</item>
</channel>
</rss>
