<?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: Different Formula, Same Result</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: lee hunter</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/#comment-17444</link>
		<dc:creator>lee hunter</dc:creator>
		<pubDate>Wed, 09 Nov 2005 13:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=727#comment-17444</guid>
		<description>&lt;p&gt;help me. I have created a list of 10 and 11 (differetn eyar groups). I then want to count the poeple, if they chose the option 10. It wont work! My email address is &lt;a href=&quot;mailto:hunter15_91@hotmail.com&quot;&gt;hunter15_91@hotmail.com&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>help me. I have created a list of 10 and 11 (differetn eyar groups). I then want to count the poeple, if they chose the option 10. It wont work! My email address is <a href="mailto:hunter15_91@hotmail.com">hunter15_91@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Rynd</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/#comment-2200</link>
		<dc:creator>Jonathan Rynd</dc:creator>
		<pubDate>Tue, 24 Aug 2004 23:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=727#comment-2200</guid>
		<description>&lt;p&gt;Or, you can press F9 to recalculate everything that needs calculating, or press shift-F9 to just recalculate the current sheet.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Or, you can press F9 to recalculate everything that needs calculating, or press shift-F9 to just recalculate the current sheet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie III</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/#comment-2199</link>
		<dc:creator>Charlie III</dc:creator>
		<pubDate>Sun, 22 Aug 2004 15:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=727#comment-2199</guid>
		<description>&lt;p&gt;I have fun with this little problem.  I use it at work many times.  It is a very helpful tool.  You just need to be aware of what mode you&#039;re in.  We have several people at my work that chastise me for my Excel skills.  They consider themselves experts.  Well, I leave the spreadsheet in Manual calc and pass it off to these so called Excel experts.  Then, I really get an ear full about the  spreadsheet not working.  &quot;Here you go, genius, press the button.&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have fun with this little problem.  I use it at work many times.  It is a very helpful tool.  You just need to be aware of what mode you&#8217;re in.  We have several people at my work that chastise me for my Excel skills.  They consider themselves experts.  Well, I leave the spreadsheet in Manual calc and pass it off to these so called Excel experts.  Then, I really get an ear full about the  spreadsheet not working.  &#8220;Here you go, genius, press the button.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/19/different-formula-same-result/#comment-2198</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 19 Aug 2004 20:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=727#comment-2198</guid>
		<description>&lt;p&gt;Dick...one of the guys on the VBAExpress board helped me with this macro to set up a MANUAL/AUTOMATIC calculation button.  Just create a new toolbar called &quot;Calcs&quot; and set up a button with this macro:&lt;/p&gt;
&lt;p&gt;Sub ManAuto()&lt;br&gt;
    With Application&lt;br&gt;
        If .Calculation = xlCalculationManual Then&lt;br&gt;
            .Calculation = xlCalculationAutomatic&lt;br&gt;
            Set myControl1 = CommandBars(&quot;Calcs&quot;).Controls(1)&lt;br&gt;
            myControl1.State = msoButtonUp&lt;br&gt;
        Else&lt;br&gt;
            .Calculation = xlCalculationManual&lt;br&gt;
            Set myControl1 = CommandBars(&quot;Calcs&quot;).Controls(1)&lt;br&gt;
            myControl1.State = msoButtonDown&lt;br&gt;
        End If&lt;br&gt;
    End With&lt;br&gt;
End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick&#8230;one of the guys on the VBAExpress board helped me with this macro to set up a MANUAL/AUTOMATIC calculation button.  Just create a new toolbar called &#8220;Calcs&#8221; and set up a button with this macro:</p>
<p>Sub ManAuto()<br />
    With Application<br />
        If .Calculation = xlCalculationManual Then<br />
            .Calculation = xlCalculationAutomatic<br />
            Set myControl1 = CommandBars(&#8220;Calcs&#8221;).Controls(1)<br />
            myControl1.State = msoButtonUp<br />
        Else<br />
            .Calculation = xlCalculationManual<br />
            Set myControl1 = CommandBars(&#8220;Calcs&#8221;).Controls(1)<br />
            myControl1.State = msoButtonDown<br />
        End If<br />
    End With<br />
End Sub</p>
]]></content:encoded>
	</item>
</channel>
</rss>

