<?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: Creating an ArcMap button to update field value only for selected feature(s). in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650343#M50616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Maybe part of the problem is I don't want to define a SINGLE in-table or feature layer, as it could be any of the dozen layers that I want to update the field value on.... and it seems wasteful to iterate through every possible feature layer when I've already selected a feature I want to operate on.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I'm not sure you'll be able to avoid this...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2018 14:53:49 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2018-09-18T14:53:49Z</dc:date>
    <item>
      <title>Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650340#M50613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;I'm looking for a way to have 3-4 buttons on an ArcMap toolbar, each changing a specific field TO a specific value, only for features that are currently selected.&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;We have several feature classes, all have the field STATUS.&lt;BR /&gt;Acceptable values for the STATUS field are: New, Existing, Deleted, Modified&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;I'd like to be able to select a feature, then quickly press a pre-defined button on the toolbar to update that STATUS field only for the currently selected feature.&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;This would save the time of entering the attribute window, selecting that field, and either typing or selecting the value from a list (if setup with domain.)&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Currently I'm having trouble just finding some python code snippets that will let me do the basics (change the field value 'Status' for a selected feature.)&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2018 17:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650340#M50613</guid>
      <dc:creator>DavidCakalic</dc:creator>
      <dc:date>2018-09-17T17:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650341#M50614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like you are developing a python addin?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax for CalculateField_Managment() is pretty straight forward: see&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm"&gt;Calculate Field—Help | ArcGIS Desktop&lt;/A&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.CalculateField_management (in_table, field, expression, {expression_type}, {code_block})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG&gt;in_table&lt;/STRONG&gt; is your feature layer or table view&amp;nbsp; and&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;field&lt;/STRONG&gt; is the status field name&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;expression&lt;/STRONG&gt; is what you would otherwise type into the field calculator&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;expression_type&lt;/STRONG&gt; declares whether Python, VB or Python9.3 is used&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;code_block&amp;nbsp;&lt;/STRONG&gt; allows you to create your own function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2018 18:22:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650341#M50614</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2018-09-17T18:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650342#M50615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joe,&lt;/P&gt;&lt;P&gt;Yes, I guess its an add-in I'm trying to create. Thanks for the link to the CalculateField… that's probably the command I need to work with. &amp;nbsp; Maybe part of the problem is I don't want to define a SINGLE in-table or feature layer, as it could be any of the dozen layers that I want to update the field value on.... and it seems wasteful to iterate through every possible feature layer when I've already selected a feature I want to operate on.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;A little more detail on use case:&lt;/P&gt;&lt;P&gt;Currently the database has the status field of all features set to "Existing".&lt;/P&gt;&lt;P&gt;As we review roads/buildings/driveways over imagery, we may find features that have been modified, removed, or are new.&amp;nbsp; For each item we come across&amp;nbsp; (regardless of the layer it is in) we want to select that feature then (with a single keypress) be able to set the status field to either "Modified"&amp;nbsp; "Deleted"&amp;nbsp; or "New".&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Honestly, if there were a reliable way (using only keyboard commands in arcmap) to pull up the attribute table and type the new value, I'd just record a keystroke macro and be done...&amp;nbsp; I was hoping that if only a single feature was already selected there would be a way to quickly reference it through python and then calc a particular field to a defined value... I just haven't come across any so far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input, and I'll definitely be looking into the CalculateField_management when I have more time to put towards this.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 13:06:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650342#M50615</guid>
      <dc:creator>DavidCakalic</dc:creator>
      <dc:date>2018-09-18T13:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650343#M50616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Maybe part of the problem is I don't want to define a SINGLE in-table or feature layer, as it could be any of the dozen layers that I want to update the field value on.... and it seems wasteful to iterate through every possible feature layer when I've already selected a feature I want to operate on.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I'm not sure you'll be able to avoid this...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 14:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650343#M50616</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2018-09-18T14:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650344#M50617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Joe.&amp;nbsp; You are not going to avoid this.&amp;nbsp; It is the nature of ArcGIS object model that you have to drill down to actual features through each individual layer and cannot access them&amp;nbsp;directly from the list of layers returned by the ListLayers method or other methods that deal with the map as a whole.&amp;nbsp; Even if you had access to a method that appeared to let you do this, in reality it would most likely just be hiding from you the process of&amp;nbsp;iterating through the layers individually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcObjects had a way of accessing the selected features that are editable in an Editor session through its IEditor interface object, but I don't think Python exposes that kind of functionality.&amp;nbsp; So, ArcObjects includes a much more robust&amp;nbsp;object model that could have theoretically allowed you to do what you want that the&amp;nbsp;Python developers chose not to incorporate.&amp;nbsp; But Python itself is already a code base&amp;nbsp;that has vastly simplified the automation of most common workflows and&amp;nbsp;is hiding hundreds if not thousands of lines of ArcObjects code that you would have had to write if you wanted to do the same things in ArcObjects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 15:42:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650344#M50617</guid>
      <dc:creator>RichardFairhurst</dc:creator>
      <dc:date>2018-09-18T15:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650345#M50618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both for the replies... that was what I was kind of afraid of.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To me, it seems like a fundamental oversight not to surface things like SELECTED FEATURES or VISIBLE FEATURES, as objects to manipulate; I mean come on... I've done half the work for Arcmap by selecting the stupid feature!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end, it unfortunately may be easier&amp;nbsp; to create a keyboard macro using AutoHotkey to call up the Attribute window, down arrow 3 times, and enter the text into the field....&amp;nbsp; It would be much more elegant&amp;nbsp; to say: "for [selected features] calc status = 'Deleted' " &amp;nbsp;&amp;nbsp; {I know that's not even close to valid code... but the English equivalent &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 16:14:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650345#M50618</guid>
      <dc:creator>DavidCakalic</dc:creator>
      <dc:date>2018-09-18T16:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650346#M50619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't mind selecting the appropriate layers in the TOC, you can use &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/python-addins/the-pythonaddins-module.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/python-addins/the-pythonaddins-module.htm"&gt;The pythonaddins module—Help | ArcGIS Desktop&lt;/A&gt; &lt;SPAN style="color: #4d4d4d; font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: bold; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;GetSelectedTOCLayerOrDataFrame&lt;/SPAN&gt; to return the selected layers and &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm"&gt;Calculate Field—Help | ArcGIS Desktop&lt;/A&gt; honors selection sets on layers.&amp;nbsp; With some proper error handling, I think creating a single button to do what you want is possible using a Python Add-in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My overall approach would be:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;User:&lt;UL&gt;&lt;LI&gt;Select layers to modify data sets in TOC&lt;/LI&gt;&lt;LI&gt;Select features to update in active view&lt;/LI&gt;&lt;LI&gt;Press button to update tables&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Tool/button&lt;UL&gt;&lt;LI&gt;Use GetSelectedTOCLayerOrDataFrame to return a list of layers selected in TOC&lt;/LI&gt;&lt;LI&gt;Iterate over list of layers and execute CalculateField_management on each layer&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2018 16:40:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650346#M50619</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-09-18T16:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating an ArcMap button to update field value only for selected feature(s).</title>
      <link>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650347#M50620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Python code is not inefficient or difficult to write and a&amp;nbsp;HotKey is a poor substitute for real programming.&amp;nbsp; The code below handles mxds that have group layers of any depth.&amp;nbsp; The code is designed for simple feature class editing and assumes that all feature classes with selections and a STATUS field are in editable workspaces.&amp;nbsp; It is not designed for editing versioned SDE feature classes, topologies, geometric networks, etc., since these are non-simple feature classes and require an active editor session to be set up to update features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;import arcpy

# method recursively handles group layers
def updateLayer(layerObj,keypress):
&amp;nbsp; # dictionary of values based on key entered by user
&amp;nbsp; valueDict = {'e':'Existing','m':'Modified','d':'Deleted','n':'New'}
&amp;nbsp; if not layerObj.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if layerObj.isFeatureLayer == True:
&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; if len(layerObj.getSelectionSet()) &amp;gt; 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; lyrFields = arcpy.ListFields(layerObj)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if 'STATUS' is lyrFields:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;fields = ['STATUS']
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.UpdateCursor(layerObj, fields) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row in cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keypress.lower() in valueDict:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[0] = valueDict[keypress.lower()]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.updateRow(row)‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍
&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for sublayer in arcpy.mapping.ListLayers(layerObj):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not sublayer.isGroupLayer:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateLayer(sublayer,keypress)

# Capture the keypress value somehow.&amp;nbsp; Hardcoded just to demonstrate the overall code
keypress = 'm'

mxd = arcpy.mapping.MapDocument("CURRENT")&amp;nbsp; # Uses your currently open MXD
df = arcpy.mapping.ListDataFrames(mxd, '')[0] # Chooses the first dataframe

lyrs = arcpy.mapping.ListLayers(mxd, '', df)
for lyr in lyrs:
&amp;nbsp; updateLayer(lyr, keypress.lower())‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 03:35:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/creating-an-arcmap-button-to-update-field-value/m-p/650347#M50620</guid>
      <dc:creator>RichardFairhurst</dc:creator>
      <dc:date>2021-12-12T03:35:02Z</dc:date>
    </item>
  </channel>
</rss>

