<?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: Using Arcade to Display Multi Criteria Symbology in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126180#M6120</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/379884" target="_blank"&gt;Daniel Zhang&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the error message you are receiving was pointing in that direction, I wanted to know, but the fact that not every class is represented in your data should not be a reason to generate the error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3856" target="_blank"&gt;Ken Buja&lt;/A&gt;&amp;nbsp; is suggestion is a good way to include all classes in your result. In the past I have "hacked" the json using AGO Assistant but that is not a&amp;nbsp;recommended way (but necessary due to multiscale symbology based on the $viewscale of the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed just now that you are using different types of quotes in your expression. Did the expression pass through Word or any other text editor?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try this (it's the same expression but without the wrong quotes):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;When&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'To Be Inspected'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'To Be Inspected'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Poor'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Below minimum tolerable'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Unknown'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2017'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Incomplete)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Reinspect'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tempCondition&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Poor'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tempCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Below minimum tolerable'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Fail)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Incomplete)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Incomplete – 2019'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Incomplete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2017'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected (Pass, 2019)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="string token"&gt;'to be reviewed'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:10:27 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2021-12-11T07:10:27Z</dc:date>
    <item>
      <title>Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126172#M6112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all!&lt;/P&gt;&lt;P&gt;So, I'm very new to the world of Arcade, and I'm trying to display data based off of two main attributes.&lt;/P&gt;&lt;P&gt;$feature.Status denotes if and when a point has been inspected. (i.e. Inspected - 2019 (Incomplete) )&lt;/P&gt;&lt;P&gt;$feature.tmpCondition denotes the quality of the point, ranging from poor to excellent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to develop a custom arcade expression to display this logic.&lt;/P&gt;&lt;P&gt;If status is "to be inspected", label as "to be inspected".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If tmpCondition is any of {poor, below minimum tolerable, unknown} AND status is any of {2017, 2018 complete, 2018 incomplete), label as "reinspect".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If tmpCondition if any of {poor, below minimum tolerable, unknown}, AND status is {2019 complete}, label as "inspected - 2019 (fail)".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If status is {2019 incomplete}, label as "Inspected - 2019 (Incomplete)".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If status is any of {2019 complete, 2018 complete, 2018 incomplete, 2017}, label as "Inspected - 2019 (Pass)".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't fit in any of these, label as "to be reviewed".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I've got for code so far - I know well in advance it is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;When( $feature.Status== ‘To Be Inspected’, ‘To Be Inspected’,

$feature.tmpCondition== ‘Poor’ || ‘Below minimum tolerable' || 'Unknown' &amp;amp;&amp;amp; $feature.Status== ‘Inspected – 2017’ || ‘Inspected – 2018 (Complete)’ || ‘Inspected – 2018 (Incomplete)’, ‘Reinspect’

$feature.Status== ‘Inspected – 2019 (Complete)’ &amp;amp;&amp;amp; $feature.tempCondition== ‘Poor’ || ‘Below minimum tolerable’, ‘Inspected – 2019 (Fail)’,

$feature.Status== ‘Inspected – 2019 (Incomplete)’, ‘Incomplete – 2019’,

$feature.Status== ‘Inspected – 2019 (Complete)’ || ‘Inspected – 2018 (Complete)’ || ‘Inspected – 2018 (Incomplete)’ || ‘Inspected – 2017’, ‘Inspected (Pass, 2019)’,

'to be reviewed' )&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance, I'm really stuck here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126172#M6112</guid>
      <dc:creator>DanielZhang2</dc:creator>
      <dc:date>2021-12-11T07:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126173#M6113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'd have to use syntax like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;($feature.tmpCondition == ‘Poor’ || $feature.tmpCondition == ‘Below minimum tolerable' || $feature.tmpCondition == 'Unknown') &amp;amp;&amp;amp; ($feature.Status == ‘Inspected – 2017’ || $feature.Status == ‘Inspected – 2018 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Incomplete)’), ‘Reinspect’‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2019 13:26:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126173#M6113</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2019-10-17T13:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126174#M6114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, would this syntax be correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;When( $feature.Status== ‘To Be Inspected’, ‘To Be Inspected’, 

($feature.tmpCondition == ‘Poor’ || $feature.tmpCondition == ‘Below minimum tolerable' || $feature.tmpCondition == 'Unknown') &amp;amp;&amp;amp; ($feature.Status == ‘Inspected – 2017’ || $feature.Status == ‘Inspected – 2018 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Incomplete)’), ‘Reinspect’

($feature.Status == ‘Inspected – 2019 (Complete)’) &amp;amp;&amp;amp; ($feature.tempCondition== ‘Poor’ || $feature.tempCondition == ‘Below minimum tolerable’), ‘Inspected – 2019 (Fail)’,

$feature.Status == ‘Inspected – 2019 (Incomplete)’, ‘Incomplete – 2019’,

($feature.Status == ‘Inspected – 2019 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Incomplete)’ || $feature.Status == ‘Inspected – 2017’), ‘Inspected (Pass, 2019)’,

'to be reviewed')&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126174#M6114</guid>
      <dc:creator>DanielZhang2</dc:creator>
      <dc:date>2021-12-11T07:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126175#M6115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few minor revisions. You left off a comma on line 3 and I removed a few extraneous parentheses.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;When( $feature.Status== ‘To Be Inspected’, ‘To Be Inspected’,
 
($feature.tmpCondition == ‘Poor’ || $feature.tmpCondition == ‘Below minimum tolerable' || $feature.tmpCondition == 'Unknown') &amp;amp;&amp;amp; ($feature.Status == ‘Inspected – 2017’ || $feature.Status == ‘Inspected – 2018 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Incomplete)’), ‘Reinspect’,

$feature.Status == ‘Inspected – 2019 (Complete)’ &amp;amp;&amp;amp; ($feature.tempCondition== ‘Poor’ || $feature.tempCondition == ‘Below minimum tolerable’), ‘Inspected – 2019 (Fail)’,

$feature.Status == ‘Inspected – 2019 (Incomplete)’, ‘Incomplete – 2019’,

$feature.Status == ‘Inspected – 2019 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Complete)’ || $feature.Status == ‘Inspected – 2018 (Incomplete)’ || $feature.Status == ‘Inspected – 2017’, ‘Inspected (Pass, 2019)’,

'to be reviewed')‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126175#M6115</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2021-12-11T07:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126176#M6116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax appears to be working - but I'm receiving this error.&lt;/P&gt;&lt;P&gt;"The layer is not providing enough information to change the drawing style."&lt;/P&gt;&lt;P&gt;I'll open up a support ticket and hopefully that clears it up. Thank you for the help on the syntax!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2019 19:03:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126176#M6116</guid>
      <dc:creator>DanielZhang2</dc:creator>
      <dc:date>2019-10-21T19:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126177#M6117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/379884"&gt;Daniel Zhang&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How much data do you have in the feature layer you want to symbolize? Do all the situations occur?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2019 19:16:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126177#M6117</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-10-21T19:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126178#M6118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;There's a decent amount of information in the layer. I'm not sure if&amp;nbsp;all situations occur, especially since some of them are "true" given any of (a, b, c) matching with (x, y, z). Is the lack of some situations actually occurring the cause of the error? Is there anything I can do to keep this logic in place; as people will be editing the attribute data and I want the updated information to display properly. Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 14:56:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126178#M6118</guid>
      <dc:creator>DanielZhang2</dc:creator>
      <dc:date>2019-10-22T14:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126179#M6119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation where I use Arcade to symbolize data that will be edited later. To properly create the legend I would edit the data so it would contain all possible combinations, make an insignificant modification to the Arcade code, and save the legend. Then, I would edit the data back to its default state.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 15:10:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126179#M6119</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2019-10-22T15:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126180#M6120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/379884" target="_blank"&gt;Daniel Zhang&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the error message you are receiving was pointing in that direction, I wanted to know, but the fact that not every class is represented in your data should not be a reason to generate the error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3856" target="_blank"&gt;Ken Buja&lt;/A&gt;&amp;nbsp; is suggestion is a good way to include all classes in your result. In the past I have "hacked" the json using AGO Assistant but that is not a&amp;nbsp;recommended way (but necessary due to multiscale symbology based on the $viewscale of the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed just now that you are using different types of quotes in your expression. Did the expression pass through Word or any other text editor?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try this (it's the same expression but without the wrong quotes):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;When&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'To Be Inspected'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'To Be Inspected'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Poor'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Below minimum tolerable'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tmpCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Unknown'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2017'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Incomplete)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Reinspect'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tempCondition&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Poor'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tempCondition &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Below minimum tolerable'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Fail)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Incomplete)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Incomplete – 2019'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2019 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Complete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2018 (Incomplete)'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;||&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Status &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected – 2017'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Inspected (Pass, 2019)'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
     &lt;SPAN class="string token"&gt;'to be reviewed'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126180#M6120</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T07:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126181#M6121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;I tried out the code and it still popped out the same error as before.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;How would one edit the data to create all possible combinations?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, thank you both for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 20:09:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126181#M6121</guid>
      <dc:creator>DanielZhang2</dc:creator>
      <dc:date>2019-10-22T20:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to Display Multi Criteria Symbology</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126182#M6122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Start testing your code in segments and once each condition returns the correct result, add it to the When statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's probably best to write down all your expected combinations and edit the attributes of the first several rows in your data to reflect these combinations. That way it's easy to find them when you have to return them to their default attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 21:21:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-arcade-to-display-multi-criteria-symbology/m-p/126182#M6122</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2019-10-22T21:21:15Z</dc:date>
    </item>
  </channel>
</rss>

