<?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 Aggregate totals in a Zip Code data set by State in New to GIS Questions</title>
    <link>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482092#M1324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To all the Problem solvers out there:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a data set that provides a total number of contributions broken down by zip code for a certain month e.g. total contributions in Zip Code 10001 in August might be $400, while 10002 is $0 etc…&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to determine the sum of these contributions by State. My zip code layer contains a field that identifies the State that the zip code is located in, so I can easily use the Select by Attributes builder and the Statistics function within the Attribute table to create a selection and then determine the total for each state, however, I’m sure there must be a smarter way then having to perform the same set of operations 50 times over (Using Model Builder perhaps?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’d appreciate any advice on how to achieve this, there may be a specific tool in the ArcToolBox that do exactly what I need which I am overlooking. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2014 19:17:15 GMT</pubDate>
    <dc:creator>DavidEvans2</dc:creator>
    <dc:date>2014-09-15T19:17:15Z</dc:date>
    <item>
      <title>Aggregate totals in a Zip Code data set by State</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482092#M1324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To all the Problem solvers out there:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a data set that provides a total number of contributions broken down by zip code for a certain month e.g. total contributions in Zip Code 10001 in August might be $400, while 10002 is $0 etc…&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to determine the sum of these contributions by State. My zip code layer contains a field that identifies the State that the zip code is located in, so I can easily use the Select by Attributes builder and the Statistics function within the Attribute table to create a selection and then determine the total for each state, however, I’m sure there must be a smarter way then having to perform the same set of operations 50 times over (Using Model Builder perhaps?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’d appreciate any advice on how to achieve this, there may be a specific tool in the ArcToolBox that do exactly what I need which I am overlooking. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 19:17:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482092#M1324</guid>
      <dc:creator>DavidEvans2</dc:creator>
      <dc:date>2014-09-15T19:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate totals in a Zip Code data set by State</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482093#M1325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you need is summary statistics &lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00080000001z000000" title="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00080000001z000000"&gt;ArcGIS Desktop&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Table: your dataset&lt;/P&gt;&lt;P&gt;Out table: Specify a table to be created&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;"&gt;statistics_fields: Your contribution field, with statistics type sum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;"&gt;Case Field: your state code column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;"&gt;You summary will come out grouped by state code in the output table.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 02:00:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482093#M1325</guid>
      <dc:creator>RiyasDeen</dc:creator>
      <dc:date>2014-09-16T02:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate totals in a Zip Code data set by State</title>
      <link>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482094#M1326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Riyas! Your solution does exactly what I needed. The output is a table, but I can easily join that back to another shapefile to visualize the output.You are a star!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 11:31:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/new-to-gis-questions/aggregate-totals-in-a-zip-code-data-set-by-state/m-p/482094#M1326</guid>
      <dc:creator>DavidEvans2</dc:creator>
      <dc:date>2014-09-16T11:31:47Z</dc:date>
    </item>
  </channel>
</rss>

