<?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: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1503728#M85414</link>
    <description>&lt;P&gt;Just went through this process and following jcarlson's lead wrote a script that creates a feature class for every sheet of a workbook using name of the sheet as the name of the featureclass. Rows of the sheet correspond to fields and columns are Field Name, Field Type, Field Alias, Field Length, Default Value and Field Domain. The code reads the last letter i.e. _A, _L, _P of the sheet name to determine geometry.&amp;nbsp; &amp;nbsp;First, last, and all empty rows are ignored as I had to work withing existing sheet designs.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jul 2024 18:15:58 GMT</pubDate>
    <dc:creator>JC-220</dc:creator>
    <dc:date>2024-07-10T18:15:58Z</dc:date>
    <item>
      <title>Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043579#M39248</link>
      <description>&lt;P&gt;First off, I’m aware that one can import tables or fields from other feature classes when creating fields for a new feature class. However, so far unless I have an exact schema from another feature class, I have to additionally go through the list I import from an Excel table to set certain parameters like Field Aliases and Data Types.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My intention is to have some sort of template in Excel whereby I will design all my fields and specify the Field Name, Alias, Data Type, “Nullable Status”, Number Format, Domains and other parameters; after which, when creating fields for feature classes, on importing the Excel table, I can have them automatically populate as per the “attributes” set in Excel without having to tweak say the Alias or “Nullable Status”.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that possible? It would really be a better and faster way to create fields without moving around in the Create Feature Class pane to populate/adjust fields and values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ll appreciate any insights.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alex Kweya.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 11:07:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043579#M39248</guid>
      <dc:creator>AlexKweya</dc:creator>
      <dc:date>2021-04-03T11:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043584#M39251</link>
      <description>&lt;P&gt;I don't believe this is possible, at least, not without some custom scripting. The conversion tool only lets you specify the row that has the column names and the range for the data. There's no way to tell the tool to look elsewhere in the sheet/workbook for metadata on the individual fields.&lt;/P&gt;&lt;P&gt;What's more, the conversion tool only makes a "best guess" at the data type based on a columns contents. A single cell with a typo can cast the whole column as another type.&lt;/P&gt;&lt;P&gt;This is one of the key downsides to spreadsheet-style data as opposed to a true database. Even if you use some of the built-in data validation tools in Excel, there's nothing about a given column that is actually defined on a deeper level that another program would understand.&lt;/P&gt;&lt;P&gt;All that said, with some scripting, I do think this &lt;EM&gt;might&lt;/EM&gt; be doable, and not all that difficult. Suppose you had another sheet in your Excel file called "Field Metadata", in which the fields had settings defined for their alias, type, etc. in its own table. You could use python to convert that table to a list of lists, then submit that as a parameter on &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-fields.htm" target="_self"&gt;&lt;STRONG&gt;Add Fields&lt;/STRONG&gt; &lt;STRONG&gt;(multiple)&lt;/STRONG&gt;&lt;/A&gt;. Here's the example from the docs:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
arcpy.env.workspace = "C:/data/district.gdb"
arcpy.management.AddFields(
    'school', 
    [['school_name', 'TEXT', 'Name', 255, 'Hello world', ''], 
     ['street_number', 'LONG', 'Street Number', None, 35, 'StreetNumDomain'],
     ['year_start', 'DATE', 'Year Start', None, '2017-08-09 16:05:07', '']])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'd need to create an empty feature class first, then use Add Fields. After that, you'd need to append the data from Excel → Feature Class rather than directly converting. But it's still using built-in tools, no custom functions or anything.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 13:26:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043584#M39251</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-04-03T13:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043587#M39252</link>
      <description>&lt;P&gt;Thanks for that, Josh. I'll explore it and see how it works out.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 13:59:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043587#M39252</guid>
      <dc:creator>AlexKweya</dc:creator>
      <dc:date>2021-04-03T13:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043588#M39253</link>
      <description>&lt;P&gt;Am really looking for this solution.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 14:04:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043588#M39253</guid>
      <dc:creator>AtanasJuma</dc:creator>
      <dc:date>2021-04-03T14:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043607#M39255</link>
      <description>&lt;P&gt;Create a template featureclass If there are certain fields that you will use all the time or create the code to produce one.&amp;nbsp; Leave Excel out of it, it isn't the vehicle for database construction or maintenance.&amp;nbsp; It has its limitations&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/excel/work-with-excel-in-arcgis-pro.htm" target="_blank"&gt;Work with Microsoft Excel files in ArcGIS Pro—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 20:39:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043607#M39255</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-04-03T20:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043626#M39260</link>
      <description>&lt;P&gt;I see. The issue however was mainly for when you have to use different fields as opposed to a certain type of repetitive fields which can be imported from an existing feature class.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 03:36:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043626#M39260</guid>
      <dc:creator>AlexKweya</dc:creator>
      <dc:date>2021-04-04T03:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043630#M39262</link>
      <description>&lt;P&gt;same advise... build fields in a geodatabase&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 04:05:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1043630#M39262</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-04-04T04:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1120616#M48362</link>
      <description>&lt;P&gt;Finally got around to testing it and it works!&lt;/P&gt;&lt;P&gt;I however noticed that the integer fields couldn’t accept the Field Lengths I had set.&lt;/P&gt;&lt;P&gt;(I attached some screenshots—Concatenating fields to form the last part of the script in Excel, and the generated Fields in ArcGIS Pro.)&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 21:24:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1120616#M48362</guid>
      <dc:creator>AlexKweya</dc:creator>
      <dc:date>2021-11-28T21:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1215032#M60117</link>
      <description>&lt;P&gt;Hello All!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am also looking into this. Survey123 Connect builds in Excel. As you build a survey you are creating the fields, as well as selecting their lengths and their fieldtypes. It would be amazing if it could be imported in some way into Pro so that all of the configurations you set do not have to be transcribed. If a mistake is made and the field/type/length do not match in the survey and the feature class the survey will not work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;ESRI wants you to publish the survey to the AGOL and&amp;nbsp; have a hosted feature service created there (so apparently taking an excel spreadsheet and converting it to a feature class can be done by ESRI?? At least the S123/AGOL folx have it down). We have our own federated server and depending on the data the fc and related tables/attachements are stored in a specified database.&lt;/P&gt;&lt;P&gt;Anyway I would love to know if this becomes available. I have been converting dozens of paper inspections/reviews for a variety of department into dynamic surveys. It would be significantly easier if this was an option in&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 12:31:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1215032#M60117</guid>
      <dc:creator>JessicaJThompson</dc:creator>
      <dc:date>2022-09-22T12:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1363087#M76588</link>
      <description>&lt;P&gt;There is an extension offered by Esri, the "Topographic Production Tools" toolbox, which allows you to do such things:&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/topographic-production/generate-geodatabase-from-excel.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/topographic-production/generate-geodatabase-from-excel.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 16:19:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1363087#M76588</guid>
      <dc:creator>alex_friant</dc:creator>
      <dc:date>2023-12-20T16:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1503728#M85414</link>
      <description>&lt;P&gt;Just went through this process and following jcarlson's lead wrote a script that creates a feature class for every sheet of a workbook using name of the sheet as the name of the featureclass. Rows of the sheet correspond to fields and columns are Field Name, Field Type, Field Alias, Field Length, Default Value and Field Domain. The code reads the last letter i.e. _A, _L, _P of the sheet name to determine geometry.&amp;nbsp; &amp;nbsp;First, last, and all empty rows are ignored as I had to work withing existing sheet designs.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 18:15:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1503728#M85414</guid>
      <dc:creator>JC-220</dc:creator>
      <dc:date>2024-07-10T18:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1684165#M101899</link>
      <description>&lt;P&gt;This is an old topic, but thought it might help someone. At least in Pro 3.5, you can bring the Excel file into Pro. Then export it to a table and use that table for the template of fields. It is pretty straightforward and easy.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 21:17:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1684165#M101899</guid>
      <dc:creator>TravisColeHC</dc:creator>
      <dc:date>2026-02-12T21:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685657#M101993</link>
      <description>&lt;P&gt;but can you specify all the Data Type and Length of the new fields?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 21:38:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685657#M101993</guid>
      <dc:creator>WayneRennick</dc:creator>
      <dc:date>2026-02-20T21:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685684#M101996</link>
      <description>&lt;P&gt;There is a built-in set of Geoprocessing Tools that do this in ArcGIS Pro:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Data Management Tools&lt;UL&gt;&lt;LI&gt;Workspace&lt;UL&gt;&lt;LI&gt;Generate Schema Report&lt;/LI&gt;&lt;LI&gt;Convert Schema Report&lt;/LI&gt;&lt;LI&gt;Import XML Workspace Document&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your workflow would be something like this:&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Design your Geodatabase "template" feature class (fields, settings, domains, sub-types, etc.)&lt;/LI&gt;&lt;LI&gt;Run the &lt;STRONG&gt;Generate Schema Report&lt;/STRONG&gt; -- choose export option to XLSX&lt;OL&gt;&lt;LI&gt;You can make little tweaks in that spreadsheet in Excel if you need to&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Run the &lt;STRONG&gt;Convert Schema Report&lt;/STRONG&gt; -- choose export option to XML&lt;/LI&gt;&lt;LI&gt;Run the &lt;STRONG&gt;Import XML Workspace Document&lt;/STRONG&gt; -- you'll need a Geodatabase as your target to deploy the schema to&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Done.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 22:45:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685684#M101996</guid>
      <dc:creator>alex_friant</dc:creator>
      <dc:date>2026-02-20T22:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create/design my fields in Excel and import them to ArcGIS Pro while creating feature classes?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685970#M102016</link>
      <description>&lt;P&gt;This is so useful.&lt;BR /&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/schema-report.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/schema-report.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 18:03:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/can-i-create-design-my-fields-in-excel-and-import/m-p/1685970#M102016</guid>
      <dc:creator>WayneRennick</dc:creator>
      <dc:date>2026-02-23T18:03:00Z</dc:date>
    </item>
  </channel>
</rss>

