<?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: How to filter an indicator fed by Arcade Expression in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102828#M5162</link>
    <description>&lt;LI-CODE lang="javascript"&gt;// Get featureset
var fs = FeatureSetByPortalItem(
  Portal('https://'),
  '',
  0,
  [
    "emergency_cost_debris",
    "emergency_cost_epm", 
    "permanent_cost_rb_fa",
    "permanent_cost_rb_nfa",
    "permanent_cost_wcf",
    "permanent_cost_pbe",
    "permanent_cost_pu",
    "permanent_cost_prf",
    "location_county"
  ],
  false);

// Establish sum expression
var sum_exp = "emergency_cost_debris + emergency_cost_epm + permanent_cost_rb_fa + permanent_cost_rb_nfa + permanent_cost_wcf + permanent_cost_pbe + permanent_cost_pu + permanent_cost_prf"

// Group features by county
var g_fs = GroupBy(
  fs,
  'location_county',
  [  // statistics to return for each county
    { name: 'Total', expression: '1', statistic: 'COUNT' }, 
    { name: 'catTotal', expression: sum_exp, statistic: 'SUM' }
  ]
);

return g_fs&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You've got it about right, the sum expression is replacing the per-category sum functions. What the &lt;STRONG&gt;GroupBy&lt;/STRONG&gt; function is doing with that expression is for each row in the table, it will add up all of those fields' values, and will then sum &lt;EM&gt;those &lt;/EM&gt;values for each unique value in "location_county".&lt;/P&gt;&lt;P&gt;Also, my mistake, that &lt;STRONG&gt;sum_exp&lt;/STRONG&gt; var needs to be a string.&lt;/P&gt;&lt;P&gt;The above code should be everything you need, fingers crossed.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Sep 2021 21:54:05 GMT</pubDate>
    <dc:creator>jcarlson</dc:creator>
    <dc:date>2021-09-28T21:54:05Z</dc:date>
    <item>
      <title>How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102792#M5159</link>
      <description>&lt;P&gt;I am trying to get the "Damage Category Total" indicator to filter based off of the selection of a county. The gist is that respondents from across the state submit survey data on damages within their county, so I want to filter the results&amp;nbsp; by county. I know how to do it generally, and it works for the other Indicators, but when I filter by county, the "Damage Category Total" Indicator shows no data.&lt;/P&gt;&lt;P&gt;Here is a screenshot of my Dashboard in progress:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screenshot (13).png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24065iFCB4F14B2F97DA88/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot (13).png" alt="Screenshot (13).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Indicators for the damage categories just display a sum of that field. The "Damage Category Total" Indicator requires an arcade expression since I am adding together the separate damage category fields.&lt;/P&gt;&lt;P&gt;Here is the expression:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var fs = FeatureSetByPortalItem(Portal('https://'),
'',0,
["emergency_cost_debris","emergency_cost_epm", 
"permanent_cost_rb_fa","permanent_cost_rb_nfa",
"permanent_cost_wcf","permanent_cost_pbe",
"permanent_cost_pu", "permanent_cost_prf"],false);
        
var CategoryTotal= Sum(fs, "emergency_cost_debris") + 
Sum (fs,"emergency_cost_epm") +
Sum (fs, "permanent_cost_rb_fa") +
Sum (fs, "permanent_cost_rb_nfa") +
Sum (fs, "permanent_cost_wcf")+
Sum (fs, "permanent_cost_pbe" )+
Sum (fs, "permanent_cost_pu" ) +
Sum (fs, "permanent_cost_prf" );
 
var newDict = { 
  'fields': [{ 'name': 'catTotal', 'type': 'esriFieldTypeDouble'}], 
  'geometryType':'',
  'features': [{   
            'attributes': {   
                'catTotal': CategoryTotal,    
            }}]   
}; 
   
return FeatureSet(Text(newDict));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anybody know what I am missing? Each damage category filters appropriately based off the county picked (only displays the data collected within the selected county). Why would it not work for the arcade expression that is just a sum of those individual damage categories?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 20:38:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102792#M5159</guid>
      <dc:creator>hsem_sturgill</dc:creator>
      <dc:date>2021-09-28T20:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102807#M5160</link>
      <description>&lt;P&gt;What you're missing is a "county" field that your output FeatureSet can filter by.&lt;/P&gt;&lt;P&gt;Assuming the 'county' field is available in that source layer, what you can do instead of your current expression is to use &lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#groupby" target="_blank"&gt;GroupBy&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var sum_exp = emergency_cost_debris + emergency_cost_epm + permanent_cost_rb_fa + permanent_cost_rb_nfa" + permanent_cost_wcf + permanent_cost_pbe + permanent_cost_pu + permanent_cost_prf

GroupBy(fs,
  'county',
  [  // statistics to return for each county
    { name: 'Total', expression: '1', statistic: 'COUNT' }, 
    { name: 'catTotal', expression: sum_exp, statistic: 'SUM' }
  ]
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will give you a FeatureSet with a single row per county, along with the number of features being summed and the total for all the fields.&lt;/P&gt;&lt;P&gt;In the indicator settings, you can set it to display the overall sum of these rows, achieving the same result as your initial expression, but now the FeatureSet can be acted upon based on its value in the county field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 21:00:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102807#M5160</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-09-28T21:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102822#M5161</link>
      <description>&lt;P&gt;Thanks for the reply Josh! I am new to Arcade, the expression I posted was hobbled together. What parts of it are you suggesting I replace?&lt;/P&gt;&lt;P&gt;Seems like I am replacing&lt;/P&gt;&lt;PRE&gt;var CategoryTotal= Sum(fs, "emergency_cost_debris") + &lt;/PRE&gt;&lt;P&gt;with&lt;/P&gt;&lt;PRE&gt;var sum_exp = emergency_cost_debris + emergency_cost_epm + permanent_cost_rb_fa + permanent_cost_rb_nfa" + permanent_cost_wcf + permanent_cost_pbe + permanent_cost_pu + permanent_cost_prf&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;var newDict = { 
  'fields': [{ 'name': 'catTotal', 'type': 'esriFieldTypeDouble'}], 
  'geometryType':'',
  'features': [{   
            'attributes': {   
                'catTotal': CategoryTotal,    
            }}]   
}; &lt;/PRE&gt;&lt;P&gt;with&lt;/P&gt;&lt;PRE&gt;GroupBy(fs,
  'county',
  [  // statistics to return for each county
    { name: 'Total', expression: '1', statistic: 'COUNT' }, 
    { name: 'catTotal', expression: sum_exp, statistic: 'SUM' }
  ]
);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this what you are thinking? If so, is the var=sum_exp line how you actually add the different categories or do I still need to do it how I have it above, with&lt;/P&gt;&lt;PRE&gt;Sum(fs, "emergency_cost_debris")&lt;/PRE&gt;&lt;P&gt;for each category?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried a couple different things, I am getting Execution Error: h.charAt is not a function. I have added location_county to the fs at the top of the expression.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 21:44:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102822#M5161</guid>
      <dc:creator>hsem_sturgill</dc:creator>
      <dc:date>2021-09-28T21:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102828#M5162</link>
      <description>&lt;LI-CODE lang="javascript"&gt;// Get featureset
var fs = FeatureSetByPortalItem(
  Portal('https://'),
  '',
  0,
  [
    "emergency_cost_debris",
    "emergency_cost_epm", 
    "permanent_cost_rb_fa",
    "permanent_cost_rb_nfa",
    "permanent_cost_wcf",
    "permanent_cost_pbe",
    "permanent_cost_pu",
    "permanent_cost_prf",
    "location_county"
  ],
  false);

// Establish sum expression
var sum_exp = "emergency_cost_debris + emergency_cost_epm + permanent_cost_rb_fa + permanent_cost_rb_nfa + permanent_cost_wcf + permanent_cost_pbe + permanent_cost_pu + permanent_cost_prf"

// Group features by county
var g_fs = GroupBy(
  fs,
  'location_county',
  [  // statistics to return for each county
    { name: 'Total', expression: '1', statistic: 'COUNT' }, 
    { name: 'catTotal', expression: sum_exp, statistic: 'SUM' }
  ]
);

return g_fs&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You've got it about right, the sum expression is replacing the per-category sum functions. What the &lt;STRONG&gt;GroupBy&lt;/STRONG&gt; function is doing with that expression is for each row in the table, it will add up all of those fields' values, and will then sum &lt;EM&gt;those &lt;/EM&gt;values for each unique value in "location_county".&lt;/P&gt;&lt;P&gt;Also, my mistake, that &lt;STRONG&gt;sum_exp&lt;/STRONG&gt; var needs to be a string.&lt;/P&gt;&lt;P&gt;The above code should be everything you need, fingers crossed.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 21:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102828#M5162</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-09-28T21:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102831#M5163</link>
      <description>&lt;P&gt;Ah, need to make the GroupBy a variable. Nice. It sort of works, except it does not actually sum the different categories. I previously could never get the sum expression you posted above to work. Do you think it matters if the fs I set includes a non numeric field (i.e. county)? I'm guessing it does for the way I was adding together the categories previously.&lt;/P&gt;&lt;P&gt;I'll pick this back up tomorrow, thank you so much for the help so far!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 22:07:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102831#M5163</guid>
      <dc:creator>hsem_sturgill</dc:creator>
      <dc:date>2021-09-28T22:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102832#M5164</link>
      <description>&lt;P&gt;No problem! Any chance the layer you're working with is public? If I could test the expression against the actual data, it would be that much more useful.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 22:09:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102832#M5164</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-09-28T22:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102833#M5165</link>
      <description>&lt;P&gt;yeah for sure! Here is the link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://services2.arcgis.com/V12PKGiMAH7dktkU/arcgis/rest/services/service_0c81f2fdd9154719a45f334151a9084a/FeatureServer" target="_blank"&gt;https://services2.arcgis.com/V12PKGiMAH7dktkU/arcgis/rest/services/service_0c81f2fdd9154719a45f334151a9084a/FeatureServer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Can also search for "PDA Survey Camp Ripley"&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 22:13:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1102833#M5165</guid>
      <dc:creator>hsem_sturgill</dc:creator>
      <dc:date>2021-09-28T22:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1103114#M5171</link>
      <description>&lt;P&gt;Ah, I see. It looks like it's having trouble with the null values. Would it be inaccurate for your survey to default all answers to 0? Try updating the null values to 0 and then run the expression again.&lt;/P&gt;&lt;P&gt;If those aren't options, you &lt;EM&gt;can &lt;/EM&gt;get this to work, but you've got to address those null values.&lt;/P&gt;&lt;P&gt;Instead of just invoking the field name, you'll need to use a case when... then... else... end within the &lt;STRONG&gt;sum_exp&lt;/STRONG&gt;. Since GroupBy is submitting an SQL statement to the service, this all works.&lt;/P&gt;&lt;P&gt;For example, instead of &lt;STRONG&gt;emergency_cost_debris + emergency_cost_epm&lt;/STRONG&gt;, the expression would read&lt;/P&gt;&lt;PRE&gt;case when emergency_cost_debris is not null then emergency_cost_debris else 0 end +&lt;BR /&gt;case when emergency_cost_epm is not null then emergency_cost_epm else 0 end&lt;/PRE&gt;&lt;P&gt;But that would be a lot of typing, and a very long expression. One way to shorten this is to use a custom function.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// Auxiliary function for assembling expression
function field_exp(field) {
    return `case when ${field} is not null then ${field} else 0 end`
};&lt;/LI-CODE&gt;&lt;P&gt;This function will take the given string &lt;STRONG&gt;field&lt;/STRONG&gt; and return the appropriate SQL statement. Using this, the expression above can be re-written as&lt;/P&gt;&lt;PRE&gt;`${field_exp('emergency_cost_debris')} + ${field_exp('emergency_cost_epm')`&lt;/PRE&gt;&lt;P&gt;But even then, that would still end up&amp;nbsp; being quite a long expression. We can do one better by using a loop with a list of field names.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// List of fields to sum
var sum_fields = [
    "emergency_cost_debris",
    "emergency_cost_epm", 
    "permanent_cost_rb_fa",
    "permanent_cost_rb_nfa",
    "permanent_cost_wcf",
    "permanent_cost_pbe",
    "permanent_cost_pu",
    "permanent_cost_prf"
]

// Instantiate sum_exp as empty string
var sum_exp = ''

for (var f in sum_fields) {
    sum_exp += `${field_exp(sum_fields[f])} + `
}&lt;/LI-CODE&gt;&lt;P&gt;This results in the &lt;STRONG&gt;sum_exp&lt;/STRONG&gt; value&lt;/P&gt;&lt;PRE&gt;case when emergency_cost_debris is not null then emergency_cost_debris else 0 end + case when emergency_cost_epm is not null then emergency_cost_epm else 0 end + case when permanent_cost_rb_fa is not null then permanent_cost_rb_fa else 0 end + case when permanent_cost_rb_nfa is not null then permanent_cost_rb_nfa else 0 end + case when permanent_cost_wcf is not null then permanent_cost_wcf else 0 end + case when permanent_cost_pbe is not null then permanent_cost_pbe else 0 end + case when permanent_cost_pu is not null then permanent_cost_pu else 0 end + case when permanent_cost_prf is not null then permanent_cost_prf else 0 end + case when location_county is not null then location_county else 0 end + &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;EM&gt;Nearly&lt;/EM&gt; right, but there's the pesky " + " on the final item. Arcade doesn't have a nice "join" function like Python, but we can just trim it off like so.&lt;/P&gt;&lt;PRE&gt;sum_exp = Left(sum_exp, Count(sum_exp) -3)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;An added benefit of this method is that the &lt;STRONG&gt;sum_fields&lt;/STRONG&gt; array can be used as a parameter when requesting our FeatureSet. We just need to use &lt;STRONG&gt;Push()&lt;/STRONG&gt; to add the county location field prior to the function.&lt;/P&gt;&lt;H3&gt;All Together Now!&lt;/H3&gt;&lt;LI-CODE lang="javascript"&gt;// List of fields to sum
var sum_fields = [
    "emergency_cost_debris",
    "emergency_cost_epm", 
    "permanent_cost_rb_fa",
    "permanent_cost_rb_nfa",
    "permanent_cost_wcf",
    "permanent_cost_pbe",
    "permanent_cost_pu",
    "permanent_cost_prf"
]

// Auxiliary function for assembling expression
function field_exp(field) {
    return `case when ${field} is not null then ${field} else 0 end`
};

// Instantiate sum_exp as empty string
var sum_exp = ''

// Populate expression
for (var f in sum_fields) {
    sum_exp += `${field_exp(sum_fields[f])} + `
}

// Trim off last 3 characters
sum_exp = Left(sum_exp, Count(sum_exp) - 3)

// Push county field into fields array
Push(sum_fields, 'location_county')

// Get featureset
var fs = FeatureSetByPortalItem(
  Portal('https://arcgis.com'),
  '213a9271b441439196855a540ea797bb',
  0,
  sum_fields,
  false);

// Group features by county
var g_fs = GroupBy(
  fs,
  'location_county',
  [  // statistics to return for each county
    { name: 'Total', expression: '1', statistic: 'COUNT' }, 
    { name: 'catTotal', expression: sum_exp, statistic: 'SUM' }
  ]
);

return g_fs&lt;/LI-CODE&gt;&lt;P&gt;Which returns:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1632927592590.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24140i02051CA0D9CE82A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="jcarlson_0-1632927592590.png" alt="jcarlson_0-1632927592590.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;H3&gt;The Indicator&lt;/H3&gt;&lt;P&gt;Now you have your FeatureSet. The indicator can be set to do the full sum:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_2-1632927663706.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24142i09118E5DDD6C6D52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_2-1632927663706.png" alt="jcarlson_2-1632927663706.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then on a category selector, list widget, etc., you can set a Filter action:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_3-1632927786453.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24144i0D919CA9FE149B19/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_3-1632927786453.png" alt="jcarlson_3-1632927786453.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Drum roll, please:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="It's alive... it's ALIVE!" style="width: 552px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24145i9E2781EBF68D1895/image-size/large?v=v2&amp;amp;px=999" role="button" title="VUwVdgGkH8.gif" alt="It's alive... it's ALIVE!" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;It's alive... it's ALIVE!&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 15:07:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1103114#M5171</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-09-29T15:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter an indicator fed by Arcade Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1103132#M5172</link>
      <description>&lt;P&gt;You crushed it! I am amazed! There is literally no way I would have figured that out. I am going to spend some time reading over your answer, this will be really good practice for me.&lt;/P&gt;&lt;P&gt;Interesting part, I already had the questions in the survey set to 0 for the default!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much! Wizard!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 15:41:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-to-filter-an-indicator-fed-by-arcade/m-p/1103132#M5172</guid>
      <dc:creator>hsem_sturgill</dc:creator>
      <dc:date>2021-09-29T15:41:36Z</dc:date>
    </item>
  </channel>
</rss>

