<?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: VBA: Calculate Acronyms from Strings</title>
	<atom:link href="http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Mon, 21 Nov 2011 07:25:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/comment-page-1/#comment-913</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Wed, 08 Oct 2008 13:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=946#comment-913</guid>
		<description>Hi,

This is a little faster.

[vb]
Function Acroymn2(Text) As String

    Dim strReturn As String
    Dim Item As Variant
    
    For Each Item In Split(Text, &quot; &quot;)
        strReturn = strReturn &amp; Left(Item, 1)
    Next
    Acroymn2 = UCase(strReturn)
    
End Function
[/vb]

hopefully code tags work ;)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is a little faster.</p>
<p>[vb]<br />
Function Acroymn2(Text) As String</p>
<p>    Dim strReturn As String<br />
    Dim Item As Variant</p>
<p>    For Each Item In Split(Text, &#8221; &#8220;)<br />
        strReturn = strReturn &amp; Left(Item, 1)<br />
    Next<br />
    Acroymn2 = UCase(strReturn)</p>
<p>End Function<br />
[/vb]</p>
<p>hopefully code tags work <img src='http://www.automateexcel.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

