<?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: UDF to Calculate an Arbitrary Formula</title>
	<atom:link href="http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Thu, 11 Mar 2010 22:03:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: [VBA] -jeu casse-tête: aide pour évaluer String (pour calcul) - Excel Downloads Forums</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-81</link>
		<dc:creator>[VBA] -jeu casse-tête: aide pour évaluer String (pour calcul) - Excel Downloads Forums</dc:creator>
		<pubDate>Fri, 21 Mar 2008 19:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-81</guid>
		<description>[...] j&#039;ai trouvé quelque chose d&#039;approchant  voir sur cette fonction VBA sur le site ci-dessous  PTS Blog » UDF to Calculate an Arbitrary Formula    __________________ Cordialement, __________________ JM  Y &#039;avait comme un bug !! (Merci [...]</description>
		<content:encoded><![CDATA[<p>[...] j&#8217;ai trouvé quelque chose d&#8217;approchant  voir sur cette fonction VBA sur le site ci-dessous  PTS Blog » UDF to Calculate an Arbitrary Formula    __________________ Cordialement, __________________ JM  Y &#8216;avait comme un bug !! (Merci [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-83</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 18 Mar 2008 03:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-83</guid>
		<description>Poetic license!</description>
		<content:encoded><![CDATA[<p>Poetic license!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thom</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-82</link>
		<dc:creator>Thom</dc:creator>
		<pubDate>Tue, 18 Mar 2008 02:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-82</guid>
		<description>Did I really &quot;complain&quot;?
;-)</description>
		<content:encoded><![CDATA[<p>Did I really &#8220;complain&#8221;?<br />
;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macario</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-80</link>
		<dc:creator>Macario</dc:creator>
		<pubDate>Sat, 08 Mar 2008 23:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-80</guid>
		<description>Hi Jon

Thanks you for your answer.

This is a great site.

Best regards.

Macario</description>
		<content:encoded><![CDATA[<p>Hi Jon</p>
<p>Thanks you for your answer.</p>
<p>This is a great site.</p>
<p>Best regards.</p>
<p>Macario</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-78</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sat, 08 Mar 2008 16:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-78</guid>
		<description>Hi Macario -

Sometimes the WordPress editor changes ampersands into the html compatible combination &quot;&amp;&quot;. I haven&#039;t quite figured out the intricacies of this system, which is new for me, but I think if you switch back and forth from the WYSIWYG mode to the HTML mode too frequently you are at increased risk.

Put an ampersand character into the following line where you see [ampersand] (take out the square brackets too). All I am doing is placing parentheses around sXvalue, although it&#039;s probably not necessary.

sFormula = Replace(sFormula, &quot;[X]&quot;, &quot;(&quot; [ampersand] sXvalue [ampersand] &quot;)&quot;)

If you are using Excel 2000 or later, this should work. Excel 97 uses an older version of VBA, which does not recognize &#039;Replace&#039;, but you could use WorksheetFunction.Substitute instead, but check its syntax first.</description>
		<content:encoded><![CDATA[<p>Hi Macario -</p>
<p>Sometimes the WordPress editor changes ampersands into the html compatible combination &#8220;&amp;&#8221;. I haven&#8217;t quite figured out the intricacies of this system, which is new for me, but I think if you switch back and forth from the WYSIWYG mode to the HTML mode too frequently you are at increased risk.</p>
<p>Put an ampersand character into the following line where you see [ampersand] (take out the square brackets too). All I am doing is placing parentheses around sXvalue, although it&#8217;s probably not necessary.</p>
<p>sFormula = Replace(sFormula, &#8220;[X]&#8220;, &#8220;(&#8221; [ampersand] sXvalue [ampersand] &#8220;)&#8221;)</p>
<p>If you are using Excel 2000 or later, this should work. Excel 97 uses an older version of VBA, which does not recognize &#8216;Replace&#8217;, but you could use WorksheetFunction.Substitute instead, but check its syntax first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Macario</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-79</link>
		<dc:creator>Macario</dc:creator>
		<pubDate>Sat, 08 Mar 2008 15:14:05 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-79</guid>
		<description>Hi Jon

What does mean amp, in the formula?

sFormula = Replace(sFormula, &quot;[X]&quot;, &quot;(&quot; &amp; sXvalue &amp; &quot;)&quot;)

I get a compile error in these two lines.

Best regards

Macario</description>
		<content:encoded><![CDATA[<p>Hi Jon</p>
<p>What does mean amp, in the formula?</p>
<p>sFormula = Replace(sFormula, &#8220;[X]&#8220;, &#8220;(&#8221; &amp; sXvalue &amp; &#8220;)&#8221;)</p>
<p>I get a compile error in these two lines.</p>
<p>Best regards</p>
<p>Macario</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://peltiertech.com/WordPress/udf-to-calculate-an-arbitrary-formula/comment-page-1/#comment-77</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 08 Mar 2008 00:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/07/udf-to-calculate-an-arbitrary-formula/#comment-77</guid>
		<description>Schweeet! :P</description>
		<content:encoded><![CDATA[<p>Schweeet! :P</p>
]]></content:encoded>
	</item>
</channel>
</rss>
