<?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: Python Script for Selecting and Calculating Field Totals in Electric Questions</title>
    <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11031#M12</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code always looks better when the syntax highlighter is deployed....&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

 

My_database &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'mygdb.gdb'&lt;/SPAN&gt;

Query_list &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'location1'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'loc2'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'loc3'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

For query &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; query_list &lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

 

    Prim_miles&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0.0&lt;/SPAN&gt;

    Sec_miles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.0&lt;/SPAN&gt;

    With arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;my_database&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;        &lt;SPAN class="string token"&gt;'loc'&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'primlength'&lt;/SPAN&gt;   seclength'&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

         For row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

                If query &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

                       Prim_miles &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

                       Sec_miles &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

      Print&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" - "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Prim_miles&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"pm"&lt;/SPAN&gt;

      Print&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" - "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Sec_miles&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"sm"&lt;/SPAN&gt;

 

      Del Prim_miles

      Del Sec_miles&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;/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>Fri, 10 Dec 2021 20:28:39 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2021-12-10T20:28:39Z</dc:date>
    <item>
      <title>Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11026#M7</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently am required to complete a monthly Excel report listing &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;per circuit&lt;/STRONG&gt;&lt;/SPAN&gt; both the &lt;SPAN style="text-decoration: underline;"&gt;Primary Conductor Mileage&lt;/SPAN&gt; and &lt;SPAN style="text-decoration: underline;"&gt;Secondary Conductor Mileage&lt;/SPAN&gt; of an electrical network. I have to manually select the values using the select by attributes tool in the tables. Then I have to calculate the distance in Miles. This takes an exceedingly long time because there are around 90 individual circuits. Is there anyone out there that could help me write a &lt;SPAN style="text-decoration: underline;"&gt;Python script&lt;/SPAN&gt; to automate this process? Or if you know of someone who can help or some resource I can use to do this, that would also be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 15:59:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11026#M7</guid>
      <dc:creator>DanielMoye</dc:creator>
      <dc:date>2020-01-27T15:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11027#M8</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to craft a reasonable response, please provide more details such as your current manual work flow, database structure (egdb versus fgdb versus published feature service).&amp;nbsp; You might want to get familiar with &lt;A href="https://desktop.arcgis.com/en/arcmap/10.6/analyze/arcpy-mapping/getting-started-with-arcpy-mapping-tutorial.htm"&gt;arcpy and using it&lt;/A&gt;.&amp;nbsp; It's not that daunting....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 16:20:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11027#M8</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2020-01-27T16:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11028#M9</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try creating it using Model Builder, then export the model as a python script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, using generic procedures it should only take a minute or two every month.&lt;/P&gt;&lt;P&gt;Export your primary and secondary to a MS Access database and have premade queries set up to create calculations and another for a report button&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 17:08:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11028#M9</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2020-01-27T17:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11029#M10</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;As the others have said this can easily be put together quite quickly.&lt;/P&gt;&lt;P&gt;Use the arcpy.da search cursor to go through your fields and total them up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conceptually&amp;nbsp; each time your record matches the attribute query, it grabs the corresponding primary and secondary conductor mileage and sums the values up when it hits another attribute match.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 18:49:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11029#M10</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-01-27T18:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11030#M11</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm on my phone so&amp;nbsp; youd need to check the syntax with arc help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import arcpy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My_database = r'mygdb.gdb'&lt;/P&gt;&lt;P&gt;Query_list = ['location1','loc2','loc3']&lt;/P&gt;&lt;P&gt;For query in query_list :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Prim_miles=0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Sec_miles = 0.0&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; With arcpy.da.SearchCursor(my_database,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'loc' , 'primlength'&amp;nbsp; &amp;nbsp;seclength') as cursor:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;For row in cursor:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If query == row[0] :&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Prim_miles += row[1]&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sec_miles += row[2]&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Print(query + " - " + str(Prim_miles) +"pm"&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Print(query + " - " + str(Sec_miles) +"sm"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Del Prim_miles&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Del Sec_miles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 19:52:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11030#M11</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-01-27T19:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11031#M12</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code always looks better when the syntax highlighter is deployed....&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

 

My_database &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'mygdb.gdb'&lt;/SPAN&gt;

Query_list &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'location1'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'loc2'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'loc3'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

For query &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; query_list &lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

 

    Prim_miles&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0.0&lt;/SPAN&gt;

    Sec_miles &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.0&lt;/SPAN&gt;

    With arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;my_database&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;        &lt;SPAN class="string token"&gt;'loc'&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'primlength'&lt;/SPAN&gt;   seclength'&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

         For row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

                If query &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;

                       Prim_miles &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

                       Sec_miles &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

      Print&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" - "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Prim_miles&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"pm"&lt;/SPAN&gt;

      Print&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" - "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Sec_miles&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"sm"&lt;/SPAN&gt;

 

      Del Prim_miles

      Del Sec_miles&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;/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>Fri, 10 Dec 2021 20:28:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11031#M12</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-12-10T20:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Python Script for Selecting and Calculating Field Totals</title>
      <link>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11032#M13</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for editing to make readable (was written on phone which doesn't appear to offer that functionality).&lt;/P&gt;&lt;P&gt;I dont think it could look any worse, so better is a good step up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2020 20:27:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/electric-questions/python-script-for-selecting-and-calculating-field/m-p/11032#M13</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-01-27T20:27:12Z</dc:date>
    </item>
  </channel>
</rss>

