<?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: Re-ordering fields in Pro? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628832#M28000</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Dan, your expertise is always helpful! &amp;nbsp;Not creating a new feature class would be great, but I have tried several methods to save the re-ordered fields: export as shp file, export as new FC, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have had success building a completely new table in Excel (with properly ordered fields) and joining to a "skeleton" shp, but searching for a better workaround. &amp;nbsp;It sounds like I may be missing a common approach for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Mar 2017 18:00:28 GMT</pubDate>
    <dc:creator>MichaelMiller8</dc:creator>
    <dc:date>2017-03-04T18:00:28Z</dc:date>
    <item>
      <title>Re-ordering fields in Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628830#M27998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to permanently re-order the fields in a feature class? I seem to recall this may be a new function in Pro but can't discover how to do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 16:34:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628830#M27998</guid>
      <dc:creator>MichaelMiller8</dc:creator>
      <dc:date>2017-03-04T16:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering fields in Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628831#M27999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/ideas/1362"&gt;https://community.esri.com/ideas/1362&lt;/A&gt;&amp;nbsp;is the idea that is still under consideration for ArcMap, it isn't in Pro yet, but &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/alter-field-properties.htm"&gt;Alter Field&lt;/A&gt;&amp;nbsp;exists in 10.4+ and PRO 1.3+ (IMS).&amp;nbsp; You are probably looking for the ability just to rearrange the table as you see fit and it will stick without creating a new feature class... not going to happen quite yet, but there are workarounds if this is an issue and something that you would do often .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 17:53:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628831#M27999</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-03-04T17:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering fields in Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628832#M28000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Dan, your expertise is always helpful! &amp;nbsp;Not creating a new feature class would be great, but I have tried several methods to save the re-ordered fields: export as shp file, export as new FC, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have had success building a completely new table in Excel (with properly ordered fields) and joining to a "skeleton" shp, but searching for a better workaround. &amp;nbsp;It sounds like I may be missing a common approach for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 18:00:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628832#M28000</guid>
      <dc:creator>MichaelMiller8</dc:creator>
      <dc:date>2017-03-04T18:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering fields in Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628833#M28001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, I use Numpy for this, there are a number of posts on my blog dealing with numpy and tabular data.&amp;nbsp; The recfunctions module in numpy has methods for creating fields, joining arrays together and arcpy's Numpyarraytofeatureclass and Numpyarraytotable allow you to work with tabular data.&amp;nbsp; I just generally find it quicker to export the non-geometry portion of a featureclass/shapefile table to an array, rearrange the columns the way I want (even add new ones with calculations) and bring the array back in as a table, do a join on the objected field and save to a new featureclass.&amp;nbsp; With simple geometry, you can even send over the geometry attributes, do all the stuff in numpy an bring it back into arcmap.&amp;nbsp; The &lt;A _jive_internal="true" href="https://community.esri.com/blogs/dan_patterson"&gt;Py_links&lt;/A&gt;&amp;nbsp;has a lot on using numpy with arcmap, the contents are not in conceptual order or order of difficulty. &lt;/P&gt;&lt;P&gt;Some day, I will finish tinkering with&amp;nbsp;the numpy&amp;nbsp;toolset and post it on the &lt;A href="http://codesharing.arcgis.com/"&gt;Code sharing site&lt;/A&gt; (you might have a troll around there too)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 18:32:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628833#M28001</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-03-04T18:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Re-ordering fields in Pro?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628834#M28002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again Dan. &amp;nbsp;I'm a Numpy novice but keen to do more. &amp;nbsp;It sounds like we both have similar non-Numpy workarounds for this for the fast turn-around stuff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As always, your insight is appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 18:55:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/re-ordering-fields-in-pro/m-p/628834#M28002</guid>
      <dc:creator>MichaelMiller8</dc:creator>
      <dc:date>2017-03-04T18:55:44Z</dc:date>
    </item>
  </channel>
</rss>

