<?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: Proper Case in VBA</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:32:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Ozkan T.</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-46085</link>
		<dc:creator>Ozkan T.</dc:creator>
		<pubDate>Thu, 13 May 2010 13:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-46085</guid>
		<description>&lt;p&gt;Hello,&lt;br&gt;
If you are using paranthesis you have to assign to a variable. Otherwise you use without paranthesis. But in this subject it does nothing without them :)&lt;/p&gt;
&lt;p&gt;StrConv &quot;test&quot;, vbProperCase &#039;No syntax error, but there is no effect&lt;/p&gt;
&lt;p&gt;mvar = StrConv (&quot;test&quot;, vbProperCase) &#039;in this case mvar is &quot;Test&quot;&lt;/p&gt;
&lt;p&gt;Özkan&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello,<br />
If you are using paranthesis you have to assign to a variable. Otherwise you use without paranthesis. But in this subject it does nothing without them <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>StrConv &#8220;test&#8221;, vbProperCase &#8216;No syntax error, but there is no effect</p>
<p>mvar = StrConv (&#8220;test&#8221;, vbProperCase) &#8216;in this case mvar is &#8220;Test&#8221;</p>
<p>Özkan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian A</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-37681</link>
		<dc:creator>Ian A</dc:creator>
		<pubDate>Mon, 02 Feb 2009 12:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-37681</guid>
		<description>&lt;p&gt;Hi There&lt;/p&gt;
&lt;p&gt;In repsonse to Paddy&#039;s question, I don&#039;t see any reply to his post,&lt;br&gt;
even though it&#039;s quite old I thought I would answer it might help someone else.&lt;br&gt;
I ran into the smae problem of being prompted with the &quot;=&quot; sign the&lt;br&gt;
solution is quite simple using your example change it to look like this&lt;/p&gt;
&lt;p&gt;&lt;code lang=&quot;vb&quot;&gt;TheString = StrConv(TheString, vbProperCase)&lt;/code&gt;&lt;code lang=&quot;vb&quot;&gt;&lt;/code&gt;&lt;/p&gt;
&lt;code lang=&quot;vb&quot;&gt;
&lt;p&gt;Ian&lt;/p&gt;&lt;/code&gt;
&lt;p&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi There</p>
<p>In repsonse to Paddy&#8217;s question, I don&#8217;t see any reply to his post,<br />
even though it&#8217;s quite old I thought I would answer it might help someone else.<br />
I ran into the smae problem of being prompted with the &#8220;=&#8221; sign the<br />
solution is quite simple using your example change it to look like this</p>
<p><div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">TheString = StrConv(TheString, vbProperCase)</div></div>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;</div></div>
</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;p&gt;Ian&lt;/p&gt;</div></div></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paddy Heron</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-34208</link>
		<dc:creator>Paddy Heron</dc:creator>
		<pubDate>Thu, 14 Aug 2008 22:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-34208</guid>
		<description>&lt;p&gt;When using strconv can you use a variable inside the bracets i.e.&lt;br&gt;
Strconv(TheString, vbpropercase). When I try it I am propmted with the = sign.&lt;br&gt;
Can anyone help?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>When using strconv can you use a variable inside the bracets i.e.<br />
Strconv(TheString, vbpropercase). When I try it I am propmted with the = sign.<br />
Can anyone help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed Brooks</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-8916</link>
		<dc:creator>Ed Brooks</dc:creator>
		<pubDate>Thu, 24 Feb 2005 23:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-8916</guid>
		<description>&lt;p&gt;It should be noted that these two functions will return different results.  For the string &quot;JAMES, P.D.&quot; strconv will return &quot;James, P.d&quot;.  Application.proper will return the value &quot;James, P.D.&quot;&lt;/p&gt;
&lt;p&gt;The second example is the preferred result, if you are talking about a surname followed by initials.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It should be noted that these two functions will return different results.  For the string &#8220;JAMES, P.D.&#8221; strconv will return &#8220;James, P.d&#8221;.  Application.proper will return the value &#8220;James, P.D.&#8221;</p>
<p>The second example is the preferred result, if you are talking about a surname followed by initials.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tramadol</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-3073</link>
		<dc:creator>Tramadol</dc:creator>
		<pubDate>Mon, 27 Dec 2004 11:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-3073</guid>
		<description>&lt;p&gt;The secret of health for both mind and body is not to mourn for the past, worry about the future, or anticipate troubles but to live in the present moment wisely and earnestly. &lt;a href=&quot;http://www.tramadol-prescription.net&quot;&gt;Buy Tramadol&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The secret of health for both mind and body is not to mourn for the past, worry about the future, or anticipate troubles but to live in the present moment wisely and earnestly. <a href="http://www.tramadol-prescription.net">Buy Tramadol</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Pablo</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-1372</link>
		<dc:creator>Juan Pablo</dc:creator>
		<pubDate>Mon, 01 Nov 2004 19:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-1372</guid>
		<description>&lt;p&gt;Antro,&lt;/p&gt;
&lt;p&gt;When working from outside of Excel, you need to replace &quot;Application&quot; with the object variable that points to Excel, for example instead of&lt;/p&gt;
&lt;p&gt;Application.Proper(&quot;more proper text&quot;)&lt;/p&gt;
&lt;p&gt;you&#039;d use&lt;/p&gt;
&lt;p&gt;XlApp.Proper(&quot;more proper text&quot;)&lt;/p&gt;
&lt;p&gt;and that&#039;s the trick about it...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Antro,</p>
<p>When working from outside of Excel, you need to replace &#8220;Application&#8221; with the object variable that points to Excel, for example instead of</p>
<p>Application.Proper(&#8220;more proper text&#8221;)</p>
<p>you&#8217;d use</p>
<p>XlApp.Proper(&#8220;more proper text&#8221;)</p>
<p>and that&#8217;s the trick about it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antro</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-1371</link>
		<dc:creator>Antro</dc:creator>
		<pubDate>Mon, 01 Nov 2004 15:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-1371</guid>
		<description>&lt;p&gt;Maybe I&#039;m not getting the implementation quite right, but I couldn&#039;t get the worksheet function PROPER to work, but everything gets a little tricky when working with Excel through OLE Automation in Word.  But I got the StrConv to work on first try&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Maybe I&#8217;m not getting the implementation quite right, but I couldn&#8217;t get the worksheet function PROPER to work, but everything gets a little tricky when working with Excel through OLE Automation in Word.  But I got the StrConv to work on first try</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-1370</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Mon, 19 Apr 2004 20:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-1370</guid>
		<description>&lt;p&gt;Toad:  I would guess that calling a worksheet function is slower than a built-in VBA function, but only marginally so.  If you were concerned with speed, you would probably want StrConv, but for most applications you can use what you like.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Toad:  I would guess that calling a worksheet function is slower than a built-in VBA function, but only marginally so.  If you were concerned with speed, you would probably want StrConv, but for most applications you can use what you like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toad</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/19/proper-case-in-vba/#comment-1369</link>
		<dc:creator>Toad</dc:creator>
		<pubDate>Mon, 19 Apr 2004 20:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=476#comment-1369</guid>
		<description>&lt;p&gt;Is one method inherently preferable?  I guess I would have gone straight for the VBA version of the PROPER function, since I&#039;m used to using that function already.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is one method inherently preferable?  I guess I would have gone straight for the VBA version of the PROPER function, since I&#8217;m used to using that function already.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

