<?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 polygon using 7 fields in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509398#M85943</link>
    <description>&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;I have a building layer that has 7 fields indicating the depth of flooding for each modeled design storm (1-yr, 2-yr, 5-yr, 10-yr, 25-yr, 50-year, and 100-yr). I would like to symbolize the layer based upon which design storm a building first begins to flood (depth&amp;gt;0). So for example, if depth at the 1-year &amp;lt;=0, depth at the 2-year&amp;lt;=0, but at the 5-year depth&amp;gt;0, then it would be symbolized as "5-Year". The symbology categories would be: 1-year, 2-year, 5-year, 10-year, 25-year, 50-year, 100-year. Is it possible to do something like this using an arcade expression without creating a new permanent field in my layer?&amp;nbsp;I am working in Pro 3.3 and will publish the service to Portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Leila&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jul 2024 16:19:17 GMT</pubDate>
    <dc:creator>LJackson29</dc:creator>
    <dc:date>2024-07-24T16:19:17Z</dc:date>
    <item>
      <title>Symbolize polygon using 7 fields</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509398#M85943</link>
      <description>&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;I have a building layer that has 7 fields indicating the depth of flooding for each modeled design storm (1-yr, 2-yr, 5-yr, 10-yr, 25-yr, 50-year, and 100-yr). I would like to symbolize the layer based upon which design storm a building first begins to flood (depth&amp;gt;0). So for example, if depth at the 1-year &amp;lt;=0, depth at the 2-year&amp;lt;=0, but at the 5-year depth&amp;gt;0, then it would be symbolized as "5-Year". The symbology categories would be: 1-year, 2-year, 5-year, 10-year, 25-year, 50-year, 100-year. Is it possible to do something like this using an arcade expression without creating a new permanent field in my layer?&amp;nbsp;I am working in Pro 3.3 and will publish the service to Portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Leila&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2024 16:19:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509398#M85943</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-07-24T16:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolize polygon using 7 fields</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509456#M85952</link>
      <description>&lt;P&gt;You can certainly use Arcade for this. Check out the function &lt;STRONG&gt;When&lt;/STRONG&gt;:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return When(
  $feature['1-year']   &amp;gt; 0,   '1-year',
  $feature['2-year']   &amp;gt; 0,   '2-year',
  $feature['5-year']   &amp;gt; 0,   '5-year',
  $feature['10-year']  &amp;gt; 0,  '10-year',
  $feature['25-year']  &amp;gt; 0,  '25-year',
  $feature['50-year']  &amp;gt; 0,  '50-year',
  $feature['100-year'] &amp;gt; 0, '100-year',
  'No Value'
)&lt;/LI-CODE&gt;&lt;P&gt;Conditions evaluate in order, so by checking which field is greater than 0 in this order, as soon as one of the conditions evaluates as true, it returns the corresponding string.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2024 17:42:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509456#M85952</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-24T17:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolize polygon using 7 fields</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509471#M85953</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2024 17:59:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/symbolize-polygon-using-7-fields/m-p/1509471#M85953</guid>
      <dc:creator>LJackson29</dc:creator>
      <dc:date>2024-07-24T17:59:21Z</dc:date>
    </item>
  </channel>
</rss>

