<?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 Make All Fields All Capitial in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659689#M99685</link>
    <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;I understand I can use&amp;nbsp;&lt;SPAN&gt;FieldName!.upper() to make one field upper case. Is there an equally easy way to make this apply to all fields simultaneously rather than applying this one field at a time?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Oct 2025 16:51:36 GMT</pubDate>
    <dc:creator>FlightDeck</dc:creator>
    <dc:date>2025-10-22T16:51:36Z</dc:date>
    <item>
      <title>Make All Fields All Capitial</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659689#M99685</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;I understand I can use&amp;nbsp;&lt;SPAN&gt;FieldName!.upper() to make one field upper case. Is there an equally easy way to make this apply to all fields simultaneously rather than applying this one field at a time?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 16:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659689#M99685</guid>
      <dc:creator>FlightDeck</dc:creator>
      <dc:date>2025-10-22T16:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Make All Fields All Capitial</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659693#M99686</link>
      <description>&lt;P&gt;You can use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-fields.htm" target="_self"&gt;Calculate Fields&lt;/A&gt; to do multiple calculations in one pass.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 16:56:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659693#M99686</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-10-22T16:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Make All Fields All Capitial</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659696#M99687</link>
      <description>&lt;P&gt;Can you elaborate? I see you linked out to the Calculate fields Documentation but I'm not sure how to apply that to my current use case. It looks like most of the examples are pulling multiple fields to calculate one field where I just need to Capitalize all fields. Sorry pretty new to python and such so still deep in the learning curve...&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 17:11:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659696#M99687</guid>
      <dc:creator>FlightDeck</dc:creator>
      <dc:date>2025-10-22T17:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Make All Fields All Capitial</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659761#M99694</link>
      <description>&lt;P&gt;The tool lets you pick multiple fields to run calculations on, so you can add every field you want to capitalize and then set each expression to be &lt;FONT face="courier new,courier"&gt;!That_Field!.upper()&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;If you want to do this with Python you can use an &lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/data-access/updatecursor-class.htm" target="_self"&gt;Update Cursor&lt;/A&gt;, play around with that on your test data and you should get good results.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 19:31:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659761#M99694</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-10-22T19:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Make All Fields All Capitial</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659771#M99696</link>
      <description>&lt;P&gt;Something like the following should work or get you close:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;tbl = # full path to table or feature class
text_fields = [
    field.name 
    for field 
    in arcpy.Describe(tbl).fields 
    if field.type == "String"
]
with arcpy.da.UpdateCursor(tbl, text_fields) as cur:
    for row in cur:
        row = [
            item.upper() if item else None
            for item
            in row
        ]
        cur.updateRow(row)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 22 Oct 2025 19:57:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/make-all-fields-all-capitial/m-p/1659771#M99696</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2025-10-22T19:57:35Z</dc:date>
    </item>
  </channel>
</rss>

