<?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: Reading field values and editing field values in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1070777#M6786</link>
    <description>&lt;P&gt;The Calculate Fields&amp;nbsp;geoprocessing tool is the fastest way to mass update data. We are planning on adding faster update cursors to the C# SDK in a future release of Pro.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jun 2021 23:29:01 GMT</pubDate>
    <dc:creator>RichRuh</dc:creator>
    <dc:date>2021-06-21T23:29:01Z</dc:date>
    <item>
      <title>Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069575#M6771</link>
      <description>&lt;P&gt;I'm trying to read the data from one field and use it to perform calculations in order to find the data for another field. I know how to change the data of a field using the inspector tool, but how would I make that data based off of the calculations of another field.&lt;/P&gt;&lt;P&gt;For example, if I wanted to have Field3 = (Field1+ Field2) / 2.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 20:41:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069575#M6771</guid>
      <dc:creator>BensonColeC</dc:creator>
      <dc:date>2021-06-17T20:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069650#M6772</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You might want to take a look at &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/an-overview-of-attribute-rules.htm" target="_self"&gt;attribute rules&lt;/A&gt;. &amp;nbsp;While not part of the Pro SDK,&amp;nbsp;attribute rules run Arcade scripts when edits take place. &amp;nbsp;You can assign a calculation rule to Field3 that computes the value of (Field1 + Field2)/2 just as you have written above.&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 00:14:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069650#M6772</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2021-06-18T00:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069831#M6774</link>
      <description>&lt;P&gt;I don't think that will work because I need to do it as part of an add-in that uses lots if if-else statements. The add-in will take input data and then read certain fields and calculate another field based on the field it reads and the input data.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 14:54:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069831#M6774</guid>
      <dc:creator>BensonColeC</dc:creator>
      <dc:date>2021-06-18T14:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069933#M6779</link>
      <description>&lt;P&gt;OK, you'd have to do it manually then. &amp;nbsp;Read the values of Field1 and Field2, do the calculation and then write out the result to Field3.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 18:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1069933#M6779</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2021-06-18T18:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1070738#M6785</link>
      <description>&lt;P&gt;What would be the best way to do this for thousands of rows. I tried using a table search and using while(rowCursor.MoveNext()) and I read and updated within the while loop, but this took about 15 minutes to run. How could I do this faster?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 22:02:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1070738#M6785</guid>
      <dc:creator>BensonColeC</dc:creator>
      <dc:date>2021-06-21T22:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1070777#M6786</link>
      <description>&lt;P&gt;The Calculate Fields&amp;nbsp;geoprocessing tool is the fastest way to mass update data. We are planning on adding faster update cursors to the C# SDK in a future release of Pro.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 23:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1070777#M6786</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2021-06-21T23:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1071187#M6788</link>
      <description>&lt;P&gt;Is there a way to use the Calculate Field geoprocessing tool through my C# script? I've tried to look for a way but don't see anything about it.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 20:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1071187#M6788</guid>
      <dc:creator>BensonColeC</dc:creator>
      <dc:date>2021-06-22T20:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reading field values and editing field values</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1071301#M6789</link>
      <description>&lt;P&gt;There's a &lt;A href="https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Geoprocessing" target="_self"&gt;conceptual doc explaining how to call&amp;nbsp;geoprocessing tools from Pro.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 23:59:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/reading-field-values-and-editing-field-values/m-p/1071301#M6789</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2021-06-22T23:59:32Z</dc:date>
    </item>
  </channel>
</rss>

