<?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: Append selected records and calculate value for one field in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1567263#M10955</link>
    <description>&lt;P&gt;Good question! I believe I am:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AmyRoust_0-1733927378819.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/121414i9189A330A616D8AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AmyRoust_0-1733927378819.png" alt="AmyRoust_0-1733927378819.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2024 14:29:48 GMT</pubDate>
    <dc:creator>AmyRoust</dc:creator>
    <dc:date>2024-12-11T14:29:48Z</dc:date>
    <item>
      <title>Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557613#M10871</link>
      <description>&lt;P&gt;I'm new to using the ArcGIS API for Python in an ArcGIS Online Notebook and am looking for help to identify the right function(s) for a data maintenance script I'm migrating from a scheduled task on a server.&lt;/P&gt;&lt;P&gt;The start of the script works fine: I select a small number of records from a hosted feature layer. (If it matters, the hosted feature layer is part of a Survey123 survey).&lt;/P&gt;&lt;P&gt;I'm struggling with finding the function(s) to:&lt;/P&gt;&lt;P&gt;1. Append those selected records to another hosted feature layer, and&lt;/P&gt;&lt;P&gt;2. On those newly appended records, update the value in the status field to 'Not Reviewed'. The status field does not exist in the source layer, but it does in the target layer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;These two steps don't have to be in this order. I'm fine with exporting the records, adding a status field, calculating that 'Not Reviewed' value and then appending the updated records to my target layer.&lt;/P&gt;&lt;P&gt;Appreciate any hints that the community can offer!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 16:39:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557613#M10871</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-11-12T16:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557678#M10872</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/82823"&gt;@AmyRoust&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You could do something like below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS

# Connect to your GIS
gis = GIS("https://www.arcgis.com", "username", "password")

# Access source feature service
item = gis.content.get("source item id")
feature_layer = item.layers[0]

# Define your query
query = "POPULATION &amp;gt; 10000"

# Query the feature layer and create a spatial dataframe
sdf = feature_layer.query(where=query).sdf

# Calculate the status field
sdf["status field name"] = sdf.calculate("'Not Reviewed'", inplace=True)

# Access the hosted feature service to update
item = gis.content.get("target item id")
feature_layer = item.layers[0]

# Append the data from the spatial dataframe to the hosted feature service
added_features = feature_layer.edit_features(adds=sdf.to_featureset())&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 12:23:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557678#M10872</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-11-13T12:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557906#M10874</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Just an observation... in line 14 you convert the feature set (returned from the query) to a sdf, and then in line 21 you are converting the sdf back to a feature set with no operations on the sdf in-between.&lt;/P&gt;&lt;P&gt;Would the operation in-between be to add the "status" field to the sdf, populate the status attributes to Not Reviewed and then append into the target? (omitting the calculate method on line 24)&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/82823"&gt;@AmyRoust&lt;/a&gt;&amp;nbsp;do you also need to account for attachments?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Glen&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 08:13:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557906#M10874</guid>
      <dc:creator>Clubdebambos</dc:creator>
      <dc:date>2024-11-13T08:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557965#M10875</link>
      <description>&lt;P&gt;Yes, you are correct&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/417766"&gt;@Clubdebambos&lt;/a&gt;,&amp;nbsp;thanks for pointing that out.&amp;nbsp; I went ahead and updated my previous reply.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 12:24:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1557965#M10875</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-11-13T12:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1558058#M10878</link>
      <description>&lt;P&gt;I don't have any attachments,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/417766"&gt;@Clubdebambos&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;Is there a way to do field mapping with the edit_features function? Some of the field names in the input feature layer don't match the target layer.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 15:25:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1558058#M10878</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-11-13T15:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1558178#M10881</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/82823"&gt;@AmyRoust&lt;/a&gt;&amp;nbsp;try the following:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;# Define the field mapping between the source and target dataframes
field_mapping = {'ID': 'ID_new', 'Name': 'Name_new', 'Value': 'Value_new'}

# Append data with field mapping
feature_layer.edit_features(adds=sdf.to_featureset(), field_mapping=field_mapping)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 17:58:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1558178#M10881</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-11-13T17:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560530#M10897</link>
      <description>&lt;P&gt;I still have something wrong, but I don't know how to print error messages because arcpy.GetMessages() doesn't return anything. Is there another way to get the error messages from failed functions?&lt;/P&gt;&lt;P&gt;Here's the portion of code that is failing:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;field_mapping = {'ObservationDate':'ReportObservationDate',
                         'CampsiteDescription':'ReportCampsiteDescription',
                         'FollowUpRequest':'ReportFollowUpRequest',
                         'SubmitterName':'ReportSubmitterName',
                         'PreferredContact':'ReportSubmitterPreferredContact',
                         'EmailAddress':'ReportSubmitterEmailAddress',
                         'PhoneNumber':'ReportSubmitterPhoneNumber',
                         'submission_date_and_time':'ReportDate'
                        }
        sdf = feature_layer.query(where=query).sdf
        feature_layer.edit_features(adds = sdf.to_featureset(), field_mapping=field_mapping)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think line 10 is working because I added a print statement for the sdf variable and got this (confidential information blurred in the screenshot):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AmyRoust_0-1732054996776.png" style="width: 626px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119933i78564BE9DCA346BF/image-dimensions/626x288?v=v2" width="626" height="288" role="button" title="AmyRoust_0-1732054996776.png" alt="AmyRoust_0-1732054996776.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 22:26:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560530#M10897</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-11-19T22:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560533#M10898</link>
      <description>&lt;P&gt;Just for clarification, I do have the variable feature_layer defined earlier in the script and it's working properly.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;item = gis.content.get("999999999") # actual item id has been removed for this chat
feature_layer = item.layers[0]&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 19 Nov 2024 22:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560533#M10898</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-11-19T22:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560675#M10900</link>
      <description>&lt;P&gt;Try the following:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;try:
    feature_layer.edit_features(adds = sdf.to_featureset(), field_mapping=field_mapping)
except Exception as e:
    print(e)
    arcpy.AddError(str(e))&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 20 Nov 2024 12:43:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1560675#M10900</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-11-20T12:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1561305#M10901</link>
      <description>&lt;P&gt;Thank you! That worked for error trapping. I fixed the issue, but field mapping doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;    if len(selected_features.features)&amp;gt;0:
        field_mapping = {'ObservationDate':'ReportObservationDate',
                         'CampsiteDescription':'ReportCampsiteDescription',
                         'FollowUpRequest':'ReportFollowUpRequest',
                         'SubmitterName':'ReportSubmitterName',
                         'PreferredContact':'ReportSubmitterPreferredContact',
                         'EmailAddress':'ReportSubmitterEmailAddress',
                         'PhoneNumber':'ReportSubmitterPhoneNumber',
                         'submission_date_and_time':'ReportDate'
                        }
        sdf = feature_layer.query(where=query)
        feature_layer.edit_features(adds = sdf, field_mapping=field_mapping)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 12 generates the error:&lt;/P&gt;&lt;PRE&gt;FeatureLayer.edit_features() got an unexpected keyword argument 'field_mapping'
ERROR: FeatureLayer.edit_features() got an unexpected keyword argument 'field_mapping'&lt;/PRE&gt;&lt;P&gt;I tried using field_mappings (plural) since that's listed in the FeatureLayer append method as a keyword, but no luck.&lt;/P&gt;&lt;P&gt;So then I thought I'd try the append method, but I'm getting Unknown Error (Error Code: 500) in response to this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;    if len(selected_features.features)&amp;gt;0:
        field_mapping = [{'ObservationDate':'ReportObservationDate',
                         'CampsiteDescription':'ReportCampsiteDescription',
                         'FollowUpRequest':'ReportFollowUpRequest',
                         'SubmitterName':'ReportSubmitterName',
                         'PreferredContact':'ReportSubmitterPreferredContact',
                         'EmailAddress':'ReportSubmitterEmailAddress',
                         'PhoneNumber':'ReportSubmitterPhoneNumber',
                         'submission_date_and_time':'ReportDate'
                        }]
        sdf = feature_layer.query(where=query)
        feature_layer.append(sdf,
                            field_mappings = field_mapping,
                            return_messages = True)&lt;/LI-CODE&gt;&lt;P&gt;My guess is that the error code is the result of not specifying an item_id, since sdf is a selection of records and not an entire item.&lt;/P&gt;&lt;P&gt;Any ideas on what to try next?&lt;/P&gt;&lt;P&gt;I wish the ArcGIS API for Python documentation consistently provided sample code like the arcpy documentation does.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 16:25:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1561305#M10901</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-11-21T16:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1564889#M10932</link>
      <description>&lt;P&gt;I'm a lot closer now after making quite a few changes. Now I'm getting the error message:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;A general error occurred: Circular reference detected
ERROR: A general error occurred: Circular reference detected&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I believe that the error is in line 42. I replaced some info with ... for security purposes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
gis = GIS("home")

# Import arcpy module
from arcgis.gis import GIS
from arcgis.features import FeatureLayer, GeoAccessor # might not need that last one?
import time, arcpy, os, datetime

# Variables
s123Layer = r'https://services.arcgis.com/.../FeatureServer/0'
report_copy_url = r'https://services.arcgis.com/.../FeatureServer/0'

try:
    item = gis.content.get("...")
    feature_layer = item.layers[0]
    field_name = "ReportDate"
    query_result = feature_layer.query(out_statistics=[{"statisticType": "max", "onStatisticField": field_name}])
    milliseconds = query_result.features[0].attributes[f"MAX_{field_name}"]
    date_time = datetime.datetime.utcfromtimestamp(milliseconds / 1000.0)
    max_date = date_time.strftime('%Y-%m-%d %H:%M:%S')
    print("Most recent report date in ...:", max_date)

    feature_layer = FeatureLayer(s123Layer, gis=gis)
    query = f"submission_date_and_time &amp;gt; timestamp '{max_date}'"
    selected_features = feature_layer.query(where=query)
    print(f"Number of new features to append to ...: {len(selected_features)}")
    
###### SCRIPT WORKS TO THIS POINT #######
    
    if len(selected_features.features)&amp;gt;0:
        fm = [{'ObservationDate':'ReportObservationDate',
                         'CampsiteDescription':'ReportCampsiteDescription',
                         'FollowUpRequest':'ReportFollowUpRequest',
                         'SubmitterName':'ReportSubmitterName',
                         'PreferredContact':'ReportSubmitterPreferredContact',
                         'EmailAddress':'ReportSubmitterEmailAddress',
                         'PhoneNumber':'ReportSubmitterPhoneNumber',
                         'submission_date_and_time':'ReportDate'
                        }]
        
        targetLayer = FeatureLayer(report_copy_url,gis=gis)
        targetLayer.append(selected_features.features, field_mappings = fm, return_messages = True)

    else:
        print("No new reports to load into ...")

except Exception as e:
    print(e)
    arcpy.AddError(str(e))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/417766"&gt;@Clubdebambos&lt;/a&gt;&amp;nbsp; - do you see any issues?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 21:20:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1564889#M10932</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-12-04T21:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1566696#M10946</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/82823"&gt;@AmyRoust&lt;/a&gt;&amp;nbsp;I see your importing arcpy.&amp;nbsp; Are you using an Advanced runtime in AGOL Notebooks?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 13:52:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1566696#M10946</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-12-10T13:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1567263#M10955</link>
      <description>&lt;P&gt;Good question! I believe I am:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AmyRoust_0-1733927378819.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/121414i9189A330A616D8AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AmyRoust_0-1733927378819.png" alt="AmyRoust_0-1733927378819.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 14:29:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1567263#M10955</guid>
      <dc:creator>AmyRoust</dc:creator>
      <dc:date>2024-12-11T14:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Append selected records and calculate value for one field</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1568806#M10969</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/82823"&gt;@AmyRoust&lt;/a&gt;&amp;nbsp;since you are using arcpy, I would use these tools to perform the append.&amp;nbsp; You can perform these steps in ArcGIS Pro and copy the code to your Notebook.&amp;nbsp; For example, use the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/make-feature-layer.htm" target="_self"&gt;Make Feature Layer&lt;/A&gt; tool to create a feature layer with the query.&amp;nbsp; Then, use the &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/append.htm" target="_self"&gt;Append&lt;/A&gt; tool to append the records with the field mapping configured.&amp;nbsp; You can easily copy the code you need by clicking the dropdown arrow next to Run:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JakeSkinner_0-1734350662042.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/121806i277355763B583163/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JakeSkinner_0-1734350662042.png" alt="JakeSkinner_0-1734350662042.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2024 12:05:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/append-selected-records-and-calculate-value-for/m-p/1568806#M10969</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2024-12-16T12:05:19Z</dc:date>
    </item>
  </channel>
</rss>

