<?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: How to convert &amp;quot;n in&amp;quot; to &amp;quot;n ft&amp;quot; within attribute tables? in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540205#M3645</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/324892"&gt;Matthew Forsberg&lt;/A&gt;&amp;nbsp;, you are right, you can do a lot with Python&amp;nbsp; in the ArcGIS Platform (and beyond).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There have been numerous questions related to useful resources to learn Python, including a blog posted and actively updated by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;&amp;nbsp;:&amp;nbsp;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/05/09/the-links"&gt;/blogs/dan_patterson/2016/05/09/the-links&lt;/A&gt;&amp;nbsp;. You will also find a lot of recommendations in this thread:&amp;nbsp;&lt;A href="https://community.esri.com/thread/185878"&gt;Can anyone suggest a good learning python website?&lt;/A&gt;&amp;nbsp;and you could have a look at this list:&amp;nbsp;&lt;A href="https://community.esri.com/groups/technical-support/blog/2014/03/26/7-easy-ways-learning-python-arcpy"&gt;https://community.esri.com/groups/technical-support/blog/2014/03/26/7-easy-ways-learning-python-arcpy&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2018 16:32:11 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2018-05-09T16:32:11Z</dc:date>
    <item>
      <title>How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540201#M3641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have multiple layers with attribute tables and the values go something like "2 in x 4 in" but I need to make it "n ft x n ft." How could I go about this process in the field calculator, or other ways?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 11:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540201#M3641</guid>
      <dc:creator>MatthewForsberg</dc:creator>
      <dc:date>2018-05-09T11:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540202#M3642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use a field calculation (Python parser) using the following function:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;def&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;ChangeInch2Feet&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; factor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.0833333&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; decimals &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_in &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; txt&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;split&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_out &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; a &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; lst_in&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;try&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inch &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; float&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feet &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; inch &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; factor
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; feet_txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;round&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;feet&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; decimals&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;feet_txt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;except&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; a &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'in'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ft'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lst_out&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;a&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lst_out&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute the calculation:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;ChangeInch2Feet&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!YourFieldNameWithDataInInches!&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... using the example you provided, this will yield:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;0.17 ft x 0.33 ft&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There might be exceptions in your data,&amp;nbsp;and this function does not account for any exceptions.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:26:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540202#M3642</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T23:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540203#M3643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there some sort of website or book&amp;nbsp;on Python? It seems to be very useful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 15:09:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540203#M3643</guid>
      <dc:creator>MatthewForsberg</dc:creator>
      <dc:date>2018-05-09T15:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540204#M3644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Python?... Google will give you a few hits.&lt;/P&gt;&lt;P&gt;The main one&amp;nbsp;&lt;A href="https://www.python.org/"&gt;https://www.python.org/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Any book by O'Reilly ... there are dozens, but a gentle intro is&lt;/P&gt;&lt;P&gt;&lt;A href="http://shop.oreilly.com/product/0636920028154.do"&gt;http://shop.oreilly.com/product/0636920028154.do&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within the Arc* suite&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm"&gt;http://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/help/data/tables/fundamentals-of-field-calculations.htm"&gt;http://pro.arcgis.com/en/pro-app/help/data/tables/fundamentals-of-field-calculations.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;docs are for Pro but applicable to *Map&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 15:23:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540204#M3644</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-05-09T15:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540205#M3645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/324892"&gt;Matthew Forsberg&lt;/A&gt;&amp;nbsp;, you are right, you can do a lot with Python&amp;nbsp; in the ArcGIS Platform (and beyond).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There have been numerous questions related to useful resources to learn Python, including a blog posted and actively updated by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;&amp;nbsp;:&amp;nbsp;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/05/09/the-links"&gt;/blogs/dan_patterson/2016/05/09/the-links&lt;/A&gt;&amp;nbsp;. You will also find a lot of recommendations in this thread:&amp;nbsp;&lt;A href="https://community.esri.com/thread/185878"&gt;Can anyone suggest a good learning python website?&lt;/A&gt;&amp;nbsp;and you could have a look at this list:&amp;nbsp;&lt;A href="https://community.esri.com/groups/technical-support/blog/2014/03/26/7-easy-ways-learning-python-arcpy"&gt;https://community.esri.com/groups/technical-support/blog/2014/03/26/7-easy-ways-learning-python-arcpy&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 16:32:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540205#M3645</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-05-09T16:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540206#M3646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I've been busy working on a different project and finally got back to this...I copy and paste the Python calculation above but nothing happens, it comes up with an error. Could you show me in a screenshot how I should be coding this? I feel like I'm not doing it correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 16:31:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540206#M3646</guid>
      <dc:creator>MatthewForsberg</dc:creator>
      <dc:date>2018-05-16T16:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540207#M3647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might be easier if you showed your screen shot.&lt;/P&gt;&lt;P&gt;The 'def' goes in the code block section&lt;/P&gt;&lt;P&gt;this line is goes in the expression line&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px #fff; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;ChangeInch2Feet&lt;/SPAN&gt;&lt;SPAN style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #999999; font-family: monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px #fff; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none #999999;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #000000; font-family: monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px #fff; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;!YourFieldNameWithDataInInches!&lt;/SPAN&gt;&lt;SPAN style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #999999; font-family: monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px #fff; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none #999999;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where you have to change the field name inside the double ! marks.&lt;/P&gt;&lt;P&gt;The parser is Python&lt;/P&gt;&lt;P&gt;The field calculation type is text/string&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 16:43:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540207#M3647</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-05-16T16:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540208#M3648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/406751_in2ft.PNG" /&gt;&lt;/P&gt;&lt;P&gt;Okay, here is a screenshot of what I just tried attempting. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 17:04:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540208#M3648</guid>
      <dc:creator>MatthewForsberg</dc:creator>
      <dc:date>2018-05-16T17:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert "n in" to "n ft" within attribute tables?</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540209#M3649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just realized that I had to put "Diameter" where you told me to put it in the "YourFieldNameWithDataInInches." Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 17:11:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-convert-quot-n-in-quot-to-quot-n-ft-quot/m-p/540209#M3649</guid>
      <dc:creator>MatthewForsberg</dc:creator>
      <dc:date>2018-05-16T17:11:52Z</dc:date>
    </item>
  </channel>
</rss>

