<?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: SharePoint Color Coded Calendar &#8211; The PayRoll Schedule</title>
	<atom:link href="http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/</link>
	<description>The SharePoint &#34;How-To&#34; Online Magazine</description>
	<lastBuildDate>Sun, 21 Mar 2010 06:30:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Derek</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-41662</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Fri, 05 Mar 2010 15:51:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-41662</guid>
		<description>It looks lile my code didn&#039;t send through my last post.</description>
		<content:encoded><![CDATA[<p>It looks lile my code didn&#8217;t send through my last post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-41337</link>
		<dc:creator>Derek</dc:creator>
		<pubDate>Fri, 05 Mar 2010 00:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-41337</guid>
		<description>Hi,

Great post. I got all the way to the end and I have the code appearing, but when I put in Christophe&#039;s code it didn&#039;t make a color box, it only displays the code. I made sure to move the CEWP to the bottom. Can you help?

Here is what it shows on the calendar rather than a nice colored box:
Committee Meeting: HP Meeting</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Great post. I got all the way to the end and I have the code appearing, but when I put in Christophe&#8217;s code it didn&#8217;t make a color box, it only displays the code. I made sure to move the CEWP to the bottom. Can you help?</p>
<p>Here is what it shows on the calendar rather than a nice colored box:<br />
Committee Meeting: HP Meeting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-34590</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-34590</guid>
		<description>Not sure why the last piece of code didn&#039;t post there. Should be as follows:

=&quot;DIV style=&#039;border:1px &quot;&amp;Color&amp;&quot; solid; padding:5px; margin:0px; color:&quot;&amp;Color&amp;&quot;; background-color: &quot;&amp;BGColor&amp;&quot;;&#039;&gt;&quot;&amp;ActivityType&amp;&quot;: &quot;&amp;Title&amp;&quot;&lt;/DIV&quot;

Might have been the DIV&#039;s Add  before and after the DIVs as appropriate.</description>
		<content:encoded><![CDATA[<p>Not sure why the last piece of code didn&#8217;t post there. Should be as follows:</p>
<p>=&#8221;DIV style=&#8217;border:1px &#8220;&amp;Color&amp;&#8221; solid; padding:5px; margin:0px; color:&#8221;&amp;Color&amp;&#8221;; background-color: &#8220;&amp;BGColor&amp;&#8221;;&#8217;&gt;&#8221;&amp;ActivityType&amp;&#8221;: &#8220;&amp;Title&amp;&#8221;&lt;/DIV&quot;</p>
<p>Might have been the DIV&#039;s Add  before and after the DIVs as appropriate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-34588</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-34588</guid>
		<description>Great, great post! Thanks Jim Bob, Christophe, and Mark.

I was able to modify the steps to set up a color coded calendar to track personnel activity (vacation, sick leave, FMLA, LWOP). Because there aren&#039;t any common letters in any of those choices I used IF statements in the calculated columns as follows:

ActivityType:

Vacation
Sick Leave
FMLA
LWOP

Color:

=IF(ActivityType=&quot;Vacation&quot;,&quot;#ccffcc&quot;,IF(ActivityType=&quot;Sick Leave&quot;,&quot;#ffcccc&quot;,IF(ActivityType=&quot;FMLA&quot;,&quot;#ffccff&quot;,IF(ActivityType=&quot;LWOP&quot;,&quot;#ffcc99))))

BGColor:

=IF(ActivityType=&quot;Vacation&quot;,&quot;#008000&quot;,IF(ActivityType=&quot;Sick Leave&quot;,&quot;#800000&quot;,IF(ActivityType=&quot;FMLA&quot;,&quot;#800080&quot;,IF(ActivityType=&quot;LWOP&quot;,&quot;#)008800)))

I changed the Display field so that it displays as Title:ActivityType:

=&quot;&quot;&amp;LeaveType&amp;&quot;: &quot;&amp;Title&amp;&quot;&quot;

Added Christophes script and voila I have a color coded Personnel Activity calendar. Something I have been hearing screaming about for quite some time.

Thanks guys, the info is much appreciated!</description>
		<content:encoded><![CDATA[<p>Great, great post! Thanks Jim Bob, Christophe, and Mark.</p>
<p>I was able to modify the steps to set up a color coded calendar to track personnel activity (vacation, sick leave, FMLA, LWOP). Because there aren&#8217;t any common letters in any of those choices I used IF statements in the calculated columns as follows:</p>
<p>ActivityType:</p>
<p>Vacation<br />
Sick Leave<br />
FMLA<br />
LWOP</p>
<p>Color:</p>
<p>=IF(ActivityType=&#8221;Vacation&#8221;,&#8221;#ccffcc&#8221;,IF(ActivityType=&#8221;Sick Leave&#8221;,&#8221;#ffcccc&#8221;,IF(ActivityType=&#8221;FMLA&#8221;,&#8221;#ffccff&#8221;,IF(ActivityType=&#8221;LWOP&#8221;,&#8221;#ffcc99))))</p>
<p>BGColor:</p>
<p>=IF(ActivityType=&#8221;Vacation&#8221;,&#8221;#008000&#8243;,IF(ActivityType=&#8221;Sick Leave&#8221;,&#8221;#800000&#8243;,IF(ActivityType=&#8221;FMLA&#8221;,&#8221;#800080&#8243;,IF(ActivityType=&#8221;LWOP&#8221;,&#8221;#)008800)))</p>
<p>I changed the Display field so that it displays as Title:ActivityType:</p>
<p>=&#8221;"&amp;LeaveType&amp;&#8221;: &#8220;&amp;Title&amp;&#8221;"</p>
<p>Added Christophes script and voila I have a color coded Personnel Activity calendar. Something I have been hearing screaming about for quite some time.</p>
<p>Thanks guys, the info is much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-26028</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Tue, 26 Jan 2010 18:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-26028</guid>
		<description>They aren&#039;t; they are coming through on this post as smart quotes for some reason, sorry.</description>
		<content:encoded><![CDATA[<p>They aren&#8217;t; they are coming through on this post as smart quotes for some reason, sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Bob Howard</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-26010</link>
		<dc:creator>Jim Bob Howard</dc:creator>
		<pubDate>Tue, 26 Jan 2010 16:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-26010</guid>
		<description>First of all, make sure your quotes are not smart quotes.</description>
		<content:encoded><![CDATA[<p>First of all, make sure your quotes are not smart quotes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-26009</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Tue, 26 Jan 2010 16:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-26009</guid>
		<description>Initially I tried this:
=&quot;&quot;&amp;Title&amp;&quot;&quot;
This gave me syntax errors over and over despite moving code here and there.

which didn&#039;t work so I tried just using the formula from Christophe&#039;s site which gave me this:
=&quot; &quot;&amp;Title&amp;&quot;&quot;
still no dice

I copied the code from Christophe&#039;s website for the CEWP and pasted it into Source then placed it below the calendar as directed.  Modified the views several ways.  Just can&#039;t get it to work.</description>
		<content:encoded><![CDATA[<p>Initially I tried this:<br />
=&#8221;"&amp;Title&amp;&#8221;"<br />
This gave me syntax errors over and over despite moving code here and there.</p>
<p>which didn&#8217;t work so I tried just using the formula from Christophe&#8217;s site which gave me this:<br />
=&#8221; &#8220;&amp;Title&amp;&#8221;"<br />
still no dice</p>
<p>I copied the code from Christophe&#8217;s website for the CEWP and pasted it into Source then placed it below the calendar as directed.  Modified the views several ways.  Just can&#8217;t get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Bob Howard</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-25999</link>
		<dc:creator>Jim Bob Howard</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-25999</guid>
		<description>Post your formulas here and we&#039;ll try to help you debug.

Blessings,
Jim Bob</description>
		<content:encoded><![CDATA[<p>Post your formulas here and we&#8217;ll try to help you debug.</p>
<p>Blessings,<br />
Jim Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EndUserSharePoint</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-25995</link>
		<dc:creator>EndUserSharePoint</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-25995</guid>
		<description>Kris - Try Stump the Panel. Jim Bob is on there everyday and you might convince him to walk you through it. -- Mark</description>
		<content:encoded><![CDATA[<p>Kris &#8211; Try Stump the Panel. Jim Bob is on there everyday and you might convince him to walk you through it. &#8212; Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/comment-page-2/#comment-25892</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Mon, 25 Jan 2010 22:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.endusersharepoint.com/?p=1522#comment-25892</guid>
		<description>This is driving me bananas, I have followed the screencast, seem to be recreating the columns and code correctly but can&#039;t seem to reproduce this.  Not sure what is going on but I am ready to bang my head on the desk.  I am sure I have a comma in the wrong place in my expression or some such.</description>
		<content:encoded><![CDATA[<p>This is driving me bananas, I have followed the screencast, seem to be recreating the columns and code correctly but can&#8217;t seem to reproduce this.  Not sure what is going on but I am ready to bang my head on the desk.  I am sure I have a comma in the wrong place in my expression or some such.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
