<?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: Summing Text</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:06:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/#comment-18775</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 12 Feb 2006 16:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1006#comment-18775</guid>
		<description>&lt;p&gt;Solution 1: I will often have a check for a numeric value or an error in this formula.&lt;/p&gt;
&lt;p&gt;Solution 2: I&#039;d be reluctant to make this change, not knowing what else would be calculated differently.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Solution 1: I will often have a check for a numeric value or an error in this formula.</p>
<p>Solution 2: I&#8217;d be reluctant to make this change, not knowing what else would be calculated differently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daryl</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/#comment-18768</link>
		<dc:creator>Daryl</dc:creator>
		<pubDate>Sat, 11 Feb 2006 21:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1006#comment-18768</guid>
		<description>&lt;p&gt;Here is a variation on this issue in Excel.  I like to distinguish between&lt;br&gt;
student grades of zero on a quiz and missing the quiz so that I can provide&lt;br&gt;
more accurate student advising:&lt;/p&gt;
&lt;p&gt;     A              B                C              Formulas in C&lt;br&gt;
1 StudentQuiz 1 RawQuiz 1 Percent&lt;br&gt;
2 Alice                 9        75.00%       =(B2/12)&lt;br&gt;
3 Bob            Absent    #VALUE!          =(B3/12)&lt;br&gt;
4 Fred                 8        66.67%       =(B4/12)&lt;/p&gt;
&lt;p&gt;Not only is Bob&#039;s mark not calculated by Excel, but because the formula in C3&lt;br&gt;
returns an error, no summary arithmetic can be performed on Column C.&lt;/p&gt;
&lt;p&gt;Solution 1:  Replace formulas in C with =(SUM(B2:B2)/12), etc.&lt;/p&gt;
&lt;p&gt;Solution 2:  Select Tools &#124; Options &#124; Transition &#124; Sheet options and check the&lt;br&gt;
             &quot;Transition formula evaluation&quot; box.  Lotus 1-2-3 evaluates&lt;br&gt;
             strings as zero and will thus return 0.00% for Bob&#039;s mark while&lt;br&gt;
             allowing the raw &quot;score&quot; of &quot;Absent.&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Here is a variation on this issue in Excel.  I like to distinguish between<br />
student grades of zero on a quiz and missing the quiz so that I can provide<br />
more accurate student advising:</p>
<p>     A              B                C              Formulas in C<br />
1 StudentQuiz 1 RawQuiz 1 Percent<br />
2 Alice                 9        75.00%       =(B2/12)<br />
3 Bob            Absent    #VALUE!          =(B3/12)<br />
4 Fred                 8        66.67%       =(B4/12)</p>
<p>Not only is Bob&#8217;s mark not calculated by Excel, but because the formula in C3<br />
returns an error, no summary arithmetic can be performed on Column C.</p>
<p>Solution 1:  Replace formulas in C with =(SUM(B2:B2)/12), etc.</p>
<p>Solution 2:  Select Tools | Options | Transition | Sheet options and check the<br />
             &#8220;Transition formula evaluation&#8221; box.  Lotus 1-2-3 evaluates<br />
             strings as zero and will thus return 0.00% for Bob&#8217;s mark while<br />
             allowing the raw &#8220;score&#8221; of &#8220;Absent.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/#comment-7739</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 07 Feb 2005 17:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1006#comment-7739</guid>
		<description>&lt;p&gt;Actually, Excel will add text and numbers.  Set A1 to 100 then set A2 to &#039;100 (note the leading quote which makes this entry &quot;text&quot;).  You can set A3 to A1 + A2, it will convert the text to a number, and then place the number 200 in A3.  The issue is that Excel will indeed try to cast text to a numerical value in this context and will fail if unable to make the conversion.  If you set A4 to =SUM(A1:A2), the answer will be 100.  It won&#039;t even try to convert any text entries.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually, Excel will add text and numbers.  Set A1 to 100 then set A2 to &#8217;100 (note the leading quote which makes this entry &#8220;text&#8221;).  You can set A3 to A1 + A2, it will convert the text to a number, and then place the number 200 in A3.  The issue is that Excel will indeed try to cast text to a numerical value in this context and will fail if unable to make the conversion.  If you set A4 to =SUM(A1:A2), the answer will be 100.  It won&#8217;t even try to convert any text entries.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/04/summing-text/#comment-6964</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 04 Feb 2005 18:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1006#comment-6964</guid>
		<description>&lt;p&gt;Wow, I&#039;m practically famous now.  First I get top billing on J-Walk&#039;s Ask J-Walk, now a Daily Dose of Excel post with my name on it.  I don&#039;t know if you noticed the comment I left at J-Walk, but I was messing with VisiCalc circa 1979 and it lets you use the plus operand or the sum function with text.  Why do I care about this?  When auto-filling formulas it&#039;s a pain to get #VALUE on some of the rows.  I could always write a better formula and check for #VALUE (which I normally do) but I was just curious about it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Wow, I&#8217;m practically famous now.  First I get top billing on J-Walk&#8217;s Ask J-Walk, now a Daily Dose of Excel post with my name on it.  I don&#8217;t know if you noticed the comment I left at J-Walk, but I was messing with VisiCalc circa 1979 and it lets you use the plus operand or the sum function with text.  Why do I care about this?  When auto-filling formulas it&#8217;s a pain to get #VALUE on some of the rows.  I could always write a better formula and check for #VALUE (which I normally do) but I was just curious about it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

