<?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 Symbolize percent of total in AGOL webmap in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546241#M27660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a point layer of zipcode centroids with an attribute value of COVID-19 cases for each zipcode.&amp;nbsp; I am currently displaying counts per zipcode as "Counts and Amounts(size)" based on the value that attribute for each record.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I would like to do instead is symbolize by "% of total cases".&amp;nbsp; Is there a way to do this without adding a field to the zipcode centroids that contains the # total cases (sum of all records)?&amp;nbsp; In other words, is there a way (Arcade or otherwise) to utilize the&lt;STRONG&gt; total summed value&lt;/STRONG&gt;&amp;nbsp;of an attribute field in a table&amp;nbsp;without using a second field that explicitly contains that total value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2020 16:42:43 GMT</pubDate>
    <dc:creator>JayJohnsonWashoeCounty</dc:creator>
    <dc:date>2020-05-05T16:42:43Z</dc:date>
    <item>
      <title>Symbolize percent of total in AGOL webmap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546241#M27660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a point layer of zipcode centroids with an attribute value of COVID-19 cases for each zipcode.&amp;nbsp; I am currently displaying counts per zipcode as "Counts and Amounts(size)" based on the value that attribute for each record.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I would like to do instead is symbolize by "% of total cases".&amp;nbsp; Is there a way to do this without adding a field to the zipcode centroids that contains the # total cases (sum of all records)?&amp;nbsp; In other words, is there a way (Arcade or otherwise) to utilize the&lt;STRONG&gt; total summed value&lt;/STRONG&gt;&amp;nbsp;of an attribute field in a table&amp;nbsp;without using a second field that explicitly contains that total value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2020 16:42:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546241#M27660</guid>
      <dc:creator>JayJohnsonWashoeCounty</dc:creator>
      <dc:date>2020-05-05T16:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolize percent of total in AGOL webmap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546242#M27661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arcade FeatureSet can be used to get the information, but it is not use-able for symbol rendering.&amp;nbsp; Here is an example using it in a Popup configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.arcgis.com/home/item.html?id=c2d3ddc1352548cbb76d29f611b86dea" title="https://www.arcgis.com/home/item.html?id=c2d3ddc1352548cbb76d29f611b86dea"&gt;https://www.arcgis.com/home/item.html?id=c2d3ddc1352548cbb76d29f611b86dea&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/491059_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var a = FeatureSetByName($datastore,"Deaths",['Deaths','Country_Region'],false)&lt;BR /&gt;var usa = filter(a, "Country_Region = 'US'")&lt;BR /&gt;var USAtotal = sum(usa,'Deaths')&lt;BR /&gt;return 'percentage of US Deaths '+ text(round(($feature.Deaths / USAtotal)*100,2)) +'% '+ textformatting.newline +$feature["Province_State"]+' deaths ' + text($feature.Deaths,'#,###') + ' / '+ 'US Total '+ text(USAtotal,'#,###')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2020 23:11:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546242#M27661</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2020-05-05T23:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolize percent of total in AGOL webmap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546243#M27662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark.&amp;nbsp; Too bad that can't be used for symbolization, which would be very handy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2020 14:53:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbolize-percent-of-total-in-agol-webmap/m-p/546243#M27662</guid>
      <dc:creator>JayJohnsonWashoeCounty</dc:creator>
      <dc:date>2020-05-06T14:53:50Z</dc:date>
    </item>
  </channel>
</rss>

