<?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 Expression in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1219878#M48257</link>
    <description>&lt;P&gt;One idea to explore is adding an Arcade expression to your map and then symbolizing that layer based on the Arcade expression value. This way, you can incorporate that additional verification that the supervisors have signed off. This is some pseudo code to give you the idea-&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var theStatus = $feature.Status;
var theSymbStatus = '';

if(theStatus == 'Denied') {
     theSymbStatus = 'Denied';
}
if(theStatus == 'Submitted') {
     theSymbStatus = 'Submitted';
}
if(theStatus == 'AdditionalInfo') {
     theSymbStatus = 'AdditionalInfo';
}
if(theStatus == 'Approved') {
     //Check if the two supervisors have reviewed and signed off
     if ($feature.Supervisor01 = true) and ($feature.Supervisor02 = true) {
         theSymbStatus = 'Approved';
     } else {
         theSymbStatus = 'AdditionalInfo';
     }
}
return theSymbStatus;&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 07 Oct 2022 15:04:07 GMT</pubDate>
    <dc:creator>SteveCole</dc:creator>
    <dc:date>2022-10-07T15:04:07Z</dc:date>
    <item>
      <title>Symbology Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1219594#M48249</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a dashboard for our ROW Permit Applications. On the back end, I created a survey so that our Water and Wastewater supervisors can review them and either Approve or Deny them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cmerwin_0-1665087473667.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53023i1010370812DB0A5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cmerwin_0-1665087473667.png" alt="cmerwin_0-1665087473667.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am wanting to write an expression that will only change the status (symbology) to Approved when both supervisors have submitted the survey as approved. Is this possible?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cmerwin_1-1665087645106.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/53024iA2915908326665BF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cmerwin_1-1665087645106.png" alt="cmerwin_1-1665087645106.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Any guidance would be greatly appreciated as I am not even sure where to start.&lt;/P&gt;&lt;P&gt;-Cody&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 20:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1219594#M48249</guid>
      <dc:creator>cmerwin</dc:creator>
      <dc:date>2022-10-06T20:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1219878#M48257</link>
      <description>&lt;P&gt;One idea to explore is adding an Arcade expression to your map and then symbolizing that layer based on the Arcade expression value. This way, you can incorporate that additional verification that the supervisors have signed off. This is some pseudo code to give you the idea-&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var theStatus = $feature.Status;
var theSymbStatus = '';

if(theStatus == 'Denied') {
     theSymbStatus = 'Denied';
}
if(theStatus == 'Submitted') {
     theSymbStatus = 'Submitted';
}
if(theStatus == 'AdditionalInfo') {
     theSymbStatus = 'AdditionalInfo';
}
if(theStatus == 'Approved') {
     //Check if the two supervisors have reviewed and signed off
     if ($feature.Supervisor01 = true) and ($feature.Supervisor02 = true) {
         theSymbStatus = 'Approved';
     } else {
         theSymbStatus = 'AdditionalInfo';
     }
}
return theSymbStatus;&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 07 Oct 2022 15:04:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1219878#M48257</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2022-10-07T15:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1222720#M48378</link>
      <description>&lt;P&gt;You may represent a layer on your map based on its value by adding an Arcade expression to your map. This way, you can let everyone know for sure that it has the stamp of approval from above. Here is some fictitious code to help you see it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;A href="https://supermariobros.io" target="_self"&gt;&lt;FONT color="#FFFFFF"&gt;super mario bros&lt;/FONT&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 08:33:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1222720#M48378</guid>
      <dc:creator>jonhwhoopmission</dc:creator>
      <dc:date>2022-10-18T08:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1559509#M62433</link>
      <description>&lt;P&gt;To achieve your goal, you can use a conditional logic expression. Ensure the system records each supervisor's input (e.g., Supervisor1Approval and Supervisor2Approval). Then, apply an expression like:&lt;/P&gt;&lt;P&gt;IF(Supervisor1Approval = "Approved" AND Supervisor2Approval = "Approved", "Approved", "Pending")&lt;/P&gt;&lt;P&gt;This ensures the status updates to "Approved" only when both supervisors submit approval. Configure the dashboard to reflect these changes visually using conditional symbology. Let me know the specific platform for detailed steps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;&lt;A href="https://people-playground.io" target="_self"&gt;&lt;FONT color="#FFFFFF"&gt;people playground&lt;/FONT&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 13:59:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1559509#M62433</guid>
      <dc:creator>AudreyDawson</dc:creator>
      <dc:date>2024-11-17T13:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Symbology Expression</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1668563#M67207</link>
      <description>&lt;P&gt;IIF($feature.Supervisor1 == "Approved" &amp;amp;&amp;amp; $feature.Supervisor2 == "Approved", "Approved", "Pending")&lt;/P&gt;&lt;P&gt;If either response is missing or not approved, the status will remain pending/denied. Just adjust field names and return values to match your layer and symbology categories.&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#FFFFFF"&gt;&lt;A href="https://wolfwinner1casino.com" target="_self"&gt;Wolf Winner Casino&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 18:16:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/symbology-expression/m-p/1668563#M67207</guid>
      <dc:creator>HaroldPrice</dc:creator>
      <dc:date>2025-11-25T18:16:09Z</dc:date>
    </item>
  </channel>
</rss>

