<?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 copy a column of numbers into a new column of text data type in New to GIS Questions</title>
    <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22983#M43</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It sounds like you have two issues:&lt;/P&gt;&lt;P&gt;1.) Your numeric field is actually storing more digits than 6, so trying to jam it directly into a string field of length 6 will result in truncation, and/or warnings.&lt;/P&gt;&lt;P&gt;2.) Your expression depends on which parser you use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TL;DR - use the round() function, regardless of parser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you have some numbers in a double field that are set to display zero decimal places:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114842" alt="1.PNG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/114842_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As &lt;A href="https://community.esri.com/migrated-users/42743"&gt;Ian Murray&lt;/A&gt; describes, the field still holds values:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114843" alt="1.PNG" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/114843_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;VB Script parser:&lt;/H1&gt;&lt;P&gt;Expression: [POINT_X]&lt;/P&gt;&lt;P&gt;Result: Truncation (warning)&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114844" alt="1.PNG" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/114844_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression: int( [POINT_X] )&lt;/P&gt;&lt;P&gt;Result: Incorrect rounding (truncation)&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114847" alt="1.PNG" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/114847_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression: round( [POINT_X] )&lt;/P&gt;&lt;P&gt;Result: Success!&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114849" class="image-5 jive-image" src="https://community.esri.com/legacyfs/online/114849_pastedImage_6.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;Python Parser:&lt;/H1&gt;&lt;P&gt;Expression: !POINT_X!&lt;/P&gt;&lt;P&gt;Result: Incorrect rounding (truncation)&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114850" class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/114850_pastedImage_7.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression: int(!POINT_X!)&lt;/P&gt;&lt;P&gt;Result: Incorrect rounding (truncation)&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114851" class="image-7 jive-image" src="https://community.esri.com/legacyfs/online/114851_pastedImage_8.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression: round( !POINT_X! )&lt;/P&gt;&lt;P&gt;Result: Success!&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114852" class="jive-image image-8" src="https://community.esri.com/legacyfs/online/114852_pastedImage_9.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jul 2015 17:31:10 GMT</pubDate>
    <dc:creator>DarrenWiens2</dc:creator>
    <dc:date>2015-07-01T17:31:10Z</dc:date>
    <item>
      <title>How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22963#M23</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm a total amateur in ArcGIS. Can you please help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with a column in the "Double" data type. There are 6-digit numbers. Then I have another column (in the same table), which is empty and its data type is "Text, Length 6". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to copy the numbers from the first column into the second column. How do I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry, I even don't know if this is the right place to give this question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 15:41:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22963#M23</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T15:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22964#M24</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;A href="http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/calculate-field.htm"&gt; Calculate Field&lt;/A&gt;, it will do the type conversion from double to text for you.&amp;nbsp; (&lt;A href="http://desktop.arcgis.com/en/desktop/latest/manage-data/tables/making-field-calculations-making-simple-field-calc.htm"&gt;Making simple field calculations&lt;/A&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 15:48:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22964#M24</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-07-01T15:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22965#M25</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you be more specific? I created an expression [name of the first column] and it doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:00:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22965#M25</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22966#M26</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In field calculator if you you swtich the parser to python and put&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;str(!YourfieldHere!) it should convert the numbers to strings(text)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:05:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22966#M26</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22967#M27</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am in the Edit session, so it's OK. I just can't figure, what expression I should use. I tried Str([nameofthefirstcolumn]) and it doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:05:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22967#M27</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22968#M28</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;Go to Field Properties of &amp;lt;NumericColumn&amp;gt;. Reduce the number of significant digits to 5.&lt;/P&gt;&lt;P&gt;Now using FieldCalculator for &amp;lt;TextColumn&amp;gt;, just enter the fieldname of &amp;lt;NumericColumn&amp;gt; in the expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22968#M28</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2015-07-01T16:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22969#M29</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, thank you Ian Murray very much and thanks also to Joshua Bixby. Now it magically works! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt; That's great, have a nice day.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:13:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22969#M29</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22970#M30</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works for me.&amp;nbsp; I have a table with two fields.&amp;nbsp; One is of Short Int type the other text:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/114823_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/114833_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:14:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22970#M30</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2015-07-01T16:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22971#M31</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad you got it working.&amp;nbsp; If you have the time, please mark the question as answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:24:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22971#M31</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22972#M32</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I'm curious why what you said didn't work for him because it certainly worked for me in a test case as well as Joe.&amp;nbsp; Your reply was entirely correct and should have worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/37254"&gt;Dan Horalík&lt;/A&gt;​, could you check your geoprocessing results and see what the error was when using Josh's method for you.&amp;nbsp; This can be done by going to the main toolbar Geoprocessing dropdown&amp;gt;Results.&amp;nbsp; It should open a window showing all the geoprocessing operations you've performed.&amp;nbsp; Could you tell us the error message it gave you for the two operations that failed for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:31:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22972#M32</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22973#M33</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayanta, I still have some problems. I have changed&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt; the number of significant digits to 5, for the numeric column. The format is Double, Precision 15, Scale 6. In the numeric column, my data are 6-digit numbers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Now I'm trying to use the Field Calculator for the text column. The length is 6.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Should I select the parser VB script or Python? And in the field should I just write the name of the text column, which is &lt;EM&gt;kod&lt;/EM&gt;? Or like this &lt;EM&gt;[kod]&lt;/EM&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:31:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22973#M33</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22974#M34</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using the VB Parser, field names need to be in brackets, with the python parser, they need to be in exclamation points.&amp;nbsp; Instead of typing the field name out, it is easiest to select from the field from the fields list, it will add it to the calculation with the proper formatting for the parser selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:33:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22974#M34</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22975#M35</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To be honest, Ian, I still have problems. I got some results, but from 500620 it turned into 500620.4 or what. I don't know whose method it was. Then I deleted those new data in the text column, because I neede just 500620 and not 500620.4 or what. Don't even know how it got there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error messages were about "invalid language". Once it was "name 'kod' (the name of the number column) is not defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought there is a problem with the number of significatn digits (as Jayanta wrote), so I set it to 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I'm in fact at the beginning, I don't know hot to calculate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22975#M35</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22976#M36</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, now I tried (in the Python parser) &lt;EM style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;str(!kod!)&lt;/EM&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;. &lt;EM&gt;kod&lt;/EM&gt; is the name of the numeric column. I got results, but instead of &lt;EM&gt;500010&lt;/EM&gt; I got &lt;EM&gt;500011.0&lt;/EM&gt;. Instead &lt;EM&gt;500050&lt;/EM&gt; I got &lt;EM&gt;500046.0&lt;/EM&gt;. That's weird, right?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:48:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22976#M36</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22977#M37</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, so you just typed in the field name using Josh's method and it failed since it was expecting brackets on the field names. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure that 500620 was actually 500620 and not 500620.4?&amp;nbsp; The double field maybe only be showing a certain number of significant digits or numbers after the decimal, but in reality could have a large number of decimal places.&amp;nbsp; On the field properties, you can see how many significant digits or decimal places it is showing by clicking the numeric option, and can control the number of significant digits or decimal places it shows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With 0 decimal places showing(Double Field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Double with 0 Decimal Places.png" class="image-1 jive-image" src="/legacyfs/online/114836_Double with 0 Decimal Places.png" style="width: 620px; height: 375px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing Numeric Field Properties&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Numeric.png" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/114837_Numeric.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change decimal places showing&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ChangedDigits.png" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/114838_ChangedDigits.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New field values showing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="MoreDigitsShowing.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/114839_MoreDigitsShowing.png" style="width: 620px; height: 368px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So your double field, might have some significant rounding issues, depending on the number of significant digits or decimal places it is showing.&amp;nbsp;&amp;nbsp; The true value is stored in the table, but is just rounded for display purposes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:51:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22977#M37</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22978#M38</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also generally, if people are storing integer numbers instead of float/double, they would use a Long Int field type not a double, since they take up less space memory-wise.&amp;nbsp; Making a double field with no decimals is not usually likely.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:57:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22978#M38</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T16:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22979#M39</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's weird. I probably shouldn't have played with that number of significant digits. The calculation changed the data in the number column, would you believe that? 500011 is the correct number, but 500010 is not. 500046 is the correct version, but 500050 is not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now I must input the original data in my table, because the numberic column got currupted. Too bad I've saved the edits, now I must reinput the original data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22979#M39</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T16:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22980#M40</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changing the significant digits showing should not change the values in your field, just change how they are displayed in the field.&amp;nbsp; The true values should still be in the table.&amp;nbsp; Try changing to allowing several decimal places, and see what numbers it shows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3420"&gt;Joshua Bixby&lt;/A&gt;​, please correct me if I've said anything erroneous, I defer to your knowledge and experience on stuff like this.&amp;nbsp; Just working off what I know. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 17:05:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22980#M40</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T17:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22981#M41</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, I re-added the original data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The numeric column &lt;EM&gt;kod&lt;/EM&gt; is in the Double format, Precision 15, Scale 6, Number of decimal places 6, Number of significant digits 6. Tha example of the data is &lt;EM&gt;500011&lt;/EM&gt;, &lt;EM&gt;500020&lt;/EM&gt;, &lt;EM&gt;500046&lt;/EM&gt;, &lt;EM&gt;500259&lt;/EM&gt;, &lt;EM&gt;500291&lt;/EM&gt; etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I'll make a calculation for the text column in the Text format, Length 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's given me the exact same numbers, but there is also &lt;EM&gt;.0 &lt;/EM&gt;at the end of each. For example &lt;EM&gt;500011.0&lt;/EM&gt;, &lt;EM&gt;500020.0&lt;/EM&gt;, &lt;EM&gt;500046.0&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is good, I'm getting closer &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt; Now I just need to figure out, how to cut the &lt;EM&gt;.0 &lt;/EM&gt;at the end. Should I change the number of significant digits from 6 to 5? Or something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 17:14:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22981#M41</guid>
      <dc:creator>DanHoralík</dc:creator>
      <dc:date>2015-07-01T17:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy a column of numbers into a new column of text data type</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22982#M42</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can either set the number of significant digits OR number of decimal places, not both.&amp;nbsp; If you have it set to 6 significant digits, it will by defintion be rounding the values. Try changing the significant digits to 15(the precision of the field) and see what the values in kod look like. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 17:18:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/how-to-copy-a-column-of-numbers-into-a-new-column/m-p/22982#M42</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2015-07-01T17:18:35Z</dc:date>
    </item>
  </channel>
</rss>

