<rss version="2.0"><channel><title>RSS feed for InstantSpot site fro</title><link>http://fro.instantspot.com</link><description>Just playing around.</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2008 by fro</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Fri, 05 Sep 2008 16:39:54 GMT</pubDate><item><title>Excel 2003 Equivalent to Excel 2007&apos;s COUNTIFS Function</title><link>http://fro.instantspot.com/blog/2008/01/30/Excel-2003-Equivalent-to-Excel-2007s-COUNTIFS-Function</link><description>&lt;p&gt;&lt;a href=&quot;http://office.microsoft.com/excel&quot;&gt;Microsoft&apos;s Excel 2007&lt;/a&gt; has a new function called COUNTIFS which allows you to apply multiple criteria (up to 127) in order to arrive at your count range. Here is how I had it setup, which works great.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;COUNTIFS(Employees!$D:$D,1,Employees!$L:$L,&amp;quot;Meets&amp;quot;)&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;This counts all of the employees that have a level of 1 and a performance rating of &amp;quot;Meets&amp;quot;. The problem is that this worksheet needs to be compatible to older versions of Excel, particularly 2003. Luckily, there is a pretty easy way to accomplish the same result. I googled and found &lt;a href=&quot;http://www.ureader.com/message/33384014.aspx&quot;&gt;this thread&lt;/a&gt; at &lt;a href=&quot;http://www.ureader.com/&quot;&gt;www.ureader.com&lt;/a&gt; which mentions the use of the SUMPRODUCT function. Here is my backwards compatible version.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;SUMPRODUCT(--(Employees!$D:$D=1),--(Employees!$L:$L=&amp;quot;Meets&amp;quot;))&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;So what does this do?&amp;nbsp;Well, the first argument returns an array of TRUE/FALSE values for each cell in the range. True if it equals 1, false if not. Adding &amp;quot;--&amp;quot; to the beginning converts the TRUE values to 1 and the FALSE values to 0. The next argument does the same thing, but for a different range of cells and for the value &amp;quot;Meets&amp;quot;. Lastly, the SUMPRODUCT function multiplies each position in the first array with the same position in the second array then adds up the result. Here is an example:&lt;/p&gt;
&lt;p&gt;Array 1 = {0;1;1;1;0}&lt;br /&gt;
Array 2 = {0;0;1;0;0}&lt;br /&gt;
Product Array = {0;0;1;0;0}&lt;br /&gt;
Sum Result = 1&lt;/p&gt;
&lt;p&gt;The SUMPRODUCT function isn&apos;t quite as elegant as the COUNTIFS function, but it gets the job done.&lt;/p&gt;</description><pubDate>Wed, 30 Jan 2008 17:10:00 GMT</pubDate><guid>http://fro.instantspot.com/blog/2008/01/30/Excel-2003-Equivalent-to-Excel-2007s-COUNTIFS-Function</guid><category>excel</category></item><item><title>Friday</title><link>http://fro.instantspot.com/blog/2006/09/15/Friday</link><description>&lt;p&gt;
&lt;font face=&quot;arial,helvetica,sans-serif&quot; size=&quot;2&quot;&gt;Well, it&amp;#39;s Friday.&amp;nbsp; Thank goodness for that.&lt;/font&gt; 
&lt;/p&gt;
</description><pubDate>Fri, 15 Sep 2006 19:54:35 GMT</pubDate><guid>http://fro.instantspot.com/blog/2006/09/15/Friday</guid></item></channel></rss>