<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proper case label expression in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683242#M7399</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tanya,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have a look at this post:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=982&amp;amp;t=190787"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=982&amp;amp;t=190787&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2012 20:28:52 GMT</pubDate>
    <dc:creator>AnthonyGiles</dc:creator>
    <dc:date>2012-08-13T20:28:52Z</dc:date>
    <item>
      <title>Proper case label expression</title>
      <link>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683241#M7398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to convert all caps to proper case with more than one word in the field. For example the text in the field is "IRONWOOD RIDGE DR" and I want it to display as "Ironwood Ridge Dr". &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that the example expression at &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00s800000027000000" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//00s800000027000000&lt;/A&gt;&lt;SPAN&gt; capitalizes the first word but all other words are lowercase so I end up with "Ironwood ridge dr".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 20:24:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683241#M7398</guid>
      <dc:creator>TanyaOwens</dc:creator>
      <dc:date>2012-08-13T20:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proper case label expression</title>
      <link>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683242#M7399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tanya,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have a look at this post:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=982&amp;amp;t=190787"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=982&amp;amp;t=190787&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 20:28:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683242#M7399</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2012-08-13T20:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proper case label expression</title>
      <link>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683243#M7400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the help but in the meantime I found the code in the help dialog button that was perfect (who would think to look there - it has been a long Monday) :):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; Function FindLabel([Name])&amp;nbsp;&amp;nbsp; &amp;nbsp; var = [Name]&amp;nbsp; &amp;nbsp; splitStr = Split(var, chr(32))&amp;nbsp; &amp;nbsp; for i = 0 to UBound(splitStr)&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tmpStr = Trim(splitStr(i))&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if len(tmpStr) &amp;gt; 0 then tmpStr = UCase(Left(tmpStr,1)) &amp;amp; LCase(Right(tmpStr, Len(tmpStr) -1))&amp;nbsp; &amp;nbsp; splitStr(i) = tmpStr&amp;nbsp; &amp;nbsp; next&amp;nbsp; &amp;nbsp; ProperCase = join(splitStr, " ")&amp;nbsp; &amp;nbsp; FindLabel = ProperCase&amp;nbsp; &amp;nbsp; End Function&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 20:54:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/proper-case-label-expression/m-p/683243#M7400</guid>
      <dc:creator>TanyaOwens</dc:creator>
      <dc:date>2012-08-13T20:54:29Z</dc:date>
    </item>
  </channel>
</rss>

