<?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: Adding zeros or numbers in a Field in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637807#M21264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I'm not sure what is going on. I still get an error zero length field name in format. Could it be that my AControl and ASection are double fields not string??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2014 18:20:26 GMT</pubDate>
    <dc:creator>MichelleCouden1</dc:creator>
    <dc:date>2014-10-27T18:20:26Z</dc:date>
    <item>
      <title>Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637794#M21251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two fields that I need to concatenate together but I need to add zeros so one said has 4 digits and the other side has 2 digits. Both separated with a hypen. For Example, 0024-14.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I have written am I close???&lt;/P&gt;&lt;P&gt;Left([ACONTROL], 4, "-") &amp;amp; Right([ASECTION], 2)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, it would be field ACONTROL with 4 digits and ASECTION with 2 digits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 20:32:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637794#M21251</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-24T20:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637795#M21252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In python&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14141864819236833" jivemacro_uid="_14141864819236833"&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; for ACONTROL in [1,10,24]:&lt;/P&gt;
&lt;P&gt;...&amp;nbsp; for ASECTION in [2,10,20]:&lt;/P&gt;
&lt;P&gt;...&amp;nbsp;&amp;nbsp; print"00{}-0{}".format(ACONTROL,ASECTION)&lt;/P&gt;
&lt;P&gt;...&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;001-02&lt;/P&gt;
&lt;P&gt;001-010&lt;/P&gt;
&lt;P&gt;001-020&lt;/P&gt;
&lt;P&gt;0010-02&lt;/P&gt;
&lt;P&gt;0010-010&lt;/P&gt;
&lt;P&gt;0010-020&lt;/P&gt;
&lt;P&gt;0024-02&lt;/P&gt;
&lt;P&gt;0024-010&lt;/P&gt;
&lt;P&gt;0024-020&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or do you want the first condition to read 0001-02 (line 5) and the one on line 11 to&amp;nbsp; read 0024-002?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 21:36:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637795#M21252</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-24T21:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637796#M21253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can write this code in Field calculator right??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 14:22:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637796#M21253</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T14:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637797#M21254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for this specific case use&lt;/P&gt;&lt;P&gt;&lt;SPAN class="keyword"&gt;print&lt;/SPAN&gt;&lt;SPAN class="string"&gt;"00{}-0{}"&lt;/SPAN&gt;.format(!ACONTROL!,!ASECTION!)&lt;/P&gt;&lt;P&gt;using the python parser&lt;/P&gt;&lt;P&gt;as I indicated there are other options depending on all your possible conditions &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 14:56:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637797#M21254</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T14:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637798#M21255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think zfill would be a little more flexible:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "%s-%s" % (!ACONTROL!.zfill(4), !ASECTION!.zfill(2))&lt;/P&gt;&lt;P&gt;That will automatically pad the input with the correct number of zeros.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 15:14:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637798#M21255</guid>
      <dc:creator>BruceNielsen</dc:creator>
      <dc:date>2014-10-27T15:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637799#M21256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm thinking I have to have it as a shapefile because I keep getting errors for the code. It keeps saying invalid syntax. I'm typing them as is. Do I have to put something in front of print??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am typing in field calculator box&lt;/P&gt;&lt;P&gt;print"00{}-0{}".format(ACONTROL,ASECTION)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 16:09:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637799#M21256</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T16:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637800#M21257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am also trying print "%s-%s" % (!ACONTROL!.zfill(4), !ASECTION!.zfill(2)). It also contracts a syntax error.&lt;/P&gt;&lt;P&gt;Do I have to put anything before the print?&lt;/P&gt;&lt;P&gt;Should it be&lt;/P&gt;&lt;P&gt;(period) .print "%s-%s"% .......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 16:18:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637800#M21257</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T16:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637801#M21258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"&gt;"00{}-0{}".format(!ACONTROL!,!ASECTION!)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"&gt;this assumes that you are using the python parser in the field calculator and you have two fields named as above, capitalized etc and in python fields are enclosed in ! ! 's&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 16:21:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637801#M21258</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T16:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637802#M21259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Typing it exactly like you have it. I am getting a ValueError : zero length field name in format. I have those field names so I'm not sure why it doesn't like it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 16:33:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637802#M21259</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637803#M21260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you added a text field...correct...and are doing the calculation there.&amp;nbsp; a screen grab of your table with the field calculator would go a long way to shortening this thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 16:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637803#M21260</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T16:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637804#M21261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Screen1.jpg" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/25229_Screen1.jpg" style="width: 620px; height: 474px;" /&gt;&lt;IMG alt="Screen2.jpg" class="jive-image image-2" src="https://community.esri.com/legacyfs/online/25230_Screen2.jpg" style="width: 620px; height: 472px;" /&gt;Yes! I just looked to double check. I'll attach 2 screen shots. One of the table one of the field calculator. Let me know if you need anything else. I am going to keep trying to figure it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 17:44:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637804#M21261</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T17:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637805#M21262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do I put something in place of the % marks? I am getting a syntax error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 17:54:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637805#M21262</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T17:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637806#M21263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well there is something wrong with your field then, I have tried it with several records from your table in python IDE itself and in the field calculator on some of my test data...see the image...&lt;BR /&gt;I would suggest that you delete the field you are in...recreate it as a text field with an appropriate width (type it in to make sure you get an actual field width)...make sure you aren't in edit mode and try again...something in that process is going amiss.&amp;nbsp; If that doesn't work, select the first few visible records and try again...if it works now, then you have something wrong with one of the records (is the field nullable??)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/25235_error.png" style="width: 620px; height: 213px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:06:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637806#M21263</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T18:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637807#M21264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I'm not sure what is going on. I still get an error zero length field name in format. Could it be that my AControl and ASection are double fields not string??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:20:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637807#M21264</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T18:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637808#M21265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Course the other thing is the first part can only be 4 numbers so how do I get it to add only the numbers I need? Also, no periods. I think I fix that by taking out the last {} right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:22:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637808#M21265</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T18:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637809#M21266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Grief...an important detail as you can see from the python example below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14144346483176788" jivemacro_uid="_14144346483176788"&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; a = 3653.000&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; b = 1.000&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; "00{}-0{}".format(a,b)&lt;/P&gt;
&lt;P&gt;'003653.0-01.0'&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; "00{}-0{}".format(int(a),int(b))&lt;/P&gt;
&lt;P&gt;'003653-01'&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see where I added the&lt;STRONG&gt; int&lt;/STRONG&gt; in front of the&lt;STRONG&gt; a&lt;/STRONG&gt; and the &lt;STRONG&gt;b ... &lt;/STRONG&gt;do the same around your fieldnames&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:31:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637809#M21266</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T18:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637810#M21267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, I have no idea what is going on. I just made 3 new text fields and filled the first two with the data and then tried formula on third field. It still gives me an error of "zero length field name in format".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:37:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637810#M21267</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T18:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637811#M21268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could this error be because it is a dbf not a shapefile or feature class??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:38:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637811#M21268</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T18:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637812#M21269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if they are text fields you don't need int, just try it on the original fields...select the first few records and use the formula with int in it.&amp;nbsp; Also, you could right-click on your two fields, go to properties and show some decimal places in the fields so you know what you really have and not what it looks like&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:41:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637812#M21269</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2014-10-27T18:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding zeros or numbers in a Field</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637813#M21270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, I'll try all of that and see how it turns out. Thank you very much for all your help today! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:47:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/adding-zeros-or-numbers-in-a-field/m-p/637813#M21270</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2014-10-27T18:47:52Z</dc:date>
    </item>
  </channel>
</rss>

