<?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: Symbology based on 2 fields? in ArcGIS Collector Questions</title>
    <link>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465014#M7909</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, that was perfect.&amp;nbsp; I really appreciate all the time you put into your comment.&amp;nbsp; I was able follow your guidelines and learn a little bit more!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2020 20:36:12 GMT</pubDate>
    <dc:creator>KorySteele</dc:creator>
    <dc:date>2020-04-16T20:36:12Z</dc:date>
    <item>
      <title>Symbology based on 2 fields?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465011#M7906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the legacy ArcGIS, I could set up symbology so that when 2 fields had values, the color of the line would change.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifically, we are doing stormwater mapping.&amp;nbsp; I would like the line for the pipes to change color when both the up and down stream inverts have been inputted.&amp;nbsp; I'm having trouble setting this up in Pro to begin with, and then I realized it may not even transfer to AGOL or Collector to begin with.&amp;nbsp; Is this even possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2020 20:21:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465011#M7906</guid>
      <dc:creator>KorySteele</dc:creator>
      <dc:date>2020-04-15T20:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology based on 2 fields?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465012#M7907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an "New Expression" with Arcade&amp;nbsp; in Symbolgy. You can use two fields by concate them&amp;nbsp;&lt;/P&gt;&lt;P&gt;Concatenate(arrayOfFieldsOrValues, '/')&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Karsten&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2020 20:54:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465012#M7907</guid>
      <dc:creator>KarstenRank</dc:creator>
      <dc:date>2020-04-15T20:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology based on 2 fields?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465013#M7908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also set it up in ArcGIS Pro like the following:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/488787_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose unique values for symbology and set an Arcade expression of your choice to get the job done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given the description you gave, I used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If (IsEmpty($feature.upstream)) {&lt;BR /&gt;return 'No Upstream'&lt;BR /&gt;}&lt;BR /&gt;Else if (IsEmpty($feature.downstream)){&lt;BR /&gt;return 'No Downstream'&lt;BR /&gt;}&lt;BR /&gt;Else {&lt;BR /&gt;return 'Complete'&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the Symbol Pane I added the possible values that the Arcade expression could return.&amp;nbsp; (you need at least one feature to do this, but you don't need all possible types)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type the values in&amp;nbsp; exactly as they would be returned from your Arcade Expression.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/488788_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then Share as a webmap from ArcGIS Pro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/488810_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you work in Collector the map will symbolize (and label if you use the expression there) as defined by the Arcade.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/488811_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2020 21:45:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465013#M7908</guid>
      <dc:creator>MarkBockenhauer</dc:creator>
      <dc:date>2020-04-15T21:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology based on 2 fields?</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465014#M7909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark, that was perfect.&amp;nbsp; I really appreciate all the time you put into your comment.&amp;nbsp; I was able follow your guidelines and learn a little bit more!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2020 20:36:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/symbology-based-on-2-fields/m-p/465014#M7909</guid>
      <dc:creator>KorySteele</dc:creator>
      <dc:date>2020-04-16T20:36:12Z</dc:date>
    </item>
  </channel>
</rss>

