<?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: Arcade for Data Expression in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485378#M9744</link>
    <description>&lt;P&gt;I was able to create something for the indicator but it returns JSON instead of the number as the final result&lt;/P&gt;&lt;P&gt;"// Define the FeatureSet including all necessary fields&lt;BR /&gt;var fs = FeatureSetByPortalItem(&lt;BR /&gt;Portal('URL of the enterprise'),&lt;BR /&gt;'id of e feature layer',&lt;BR /&gt;0,&lt;BR /&gt;["Count_No", 'Q1_1', 'Q1_2', 'Q1_3', 'Q1_4'],&lt;BR /&gt;false&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// Calculate the number of No answers&lt;BR /&gt;var noCount = 0;&lt;BR /&gt;for (var i = 0; i &amp;lt; 86; i++) {&lt;BR /&gt;var columnName = "column_" + i; // Adjust this according to your column naming convention&lt;BR /&gt;noCount += Count(Filter(fs, columnName + " = 'No'"));&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;var ratioDict = {&lt;BR /&gt;'fields': [&lt;BR /&gt;{'name':'No_Count', 'type':'esriFieldTypeInteger'}&lt;BR /&gt;],&lt;BR /&gt;'geometryType': '',&lt;BR /&gt;'features': [{&lt;BR /&gt;'attributes': {&lt;BR /&gt;'No_Count': noCount&lt;BR /&gt;}&lt;BR /&gt;}]&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;// Transform the dictionary into a FeatureSet and return it&lt;BR /&gt;return FeatureSet(Integer(ratioDict));"&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jun 2024 14:43:15 GMT</pubDate>
    <dc:creator>MariusVerdes</dc:creator>
    <dc:date>2024-06-05T14:43:15Z</dc:date>
    <item>
      <title>Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485132#M9741</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I’m working on a new dashboard based on data from an existing survey, but I’m new to Data Expressions, and I’ve hit a roadblock.&lt;/P&gt;&lt;P&gt;I want to create 4 different elements.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Indicators:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I want to create two indicators:&lt;UL&gt;&lt;LI&gt;One for the count of surveys with only “Yes” answers.&lt;/LI&gt;&lt;LI&gt;Another for the count of surveys with no answers.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Null values should not impact the counting.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Bar Chart:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Additionally, I’d like to create a bar chart showing the total number of “NO” answers per chapter and per question.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I’ve attached the layer information with all the columns.&lt;/P&gt;&lt;P&gt;Thanks in advance for any suggestions!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 09:12:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485132#M9741</guid>
      <dc:creator>MariusVerdes</dc:creator>
      <dc:date>2024-06-05T09:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485378#M9744</link>
      <description>&lt;P&gt;I was able to create something for the indicator but it returns JSON instead of the number as the final result&lt;/P&gt;&lt;P&gt;"// Define the FeatureSet including all necessary fields&lt;BR /&gt;var fs = FeatureSetByPortalItem(&lt;BR /&gt;Portal('URL of the enterprise'),&lt;BR /&gt;'id of e feature layer',&lt;BR /&gt;0,&lt;BR /&gt;["Count_No", 'Q1_1', 'Q1_2', 'Q1_3', 'Q1_4'],&lt;BR /&gt;false&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// Calculate the number of No answers&lt;BR /&gt;var noCount = 0;&lt;BR /&gt;for (var i = 0; i &amp;lt; 86; i++) {&lt;BR /&gt;var columnName = "column_" + i; // Adjust this according to your column naming convention&lt;BR /&gt;noCount += Count(Filter(fs, columnName + " = 'No'"));&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;var ratioDict = {&lt;BR /&gt;'fields': [&lt;BR /&gt;{'name':'No_Count', 'type':'esriFieldTypeInteger'}&lt;BR /&gt;],&lt;BR /&gt;'geometryType': '',&lt;BR /&gt;'features': [{&lt;BR /&gt;'attributes': {&lt;BR /&gt;'No_Count': noCount&lt;BR /&gt;}&lt;BR /&gt;}]&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;// Transform the dictionary into a FeatureSet and return it&lt;BR /&gt;return FeatureSet(Integer(ratioDict));"&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 14:43:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485378#M9744</guid>
      <dc:creator>MariusVerdes</dc:creator>
      <dc:date>2024-06-05T14:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485524#M9751</link>
      <description>&lt;P&gt;Use this as the final line&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return FeatureSet(ratioDict);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 17:09:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485524#M9751</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-06-05T17:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485963#M9756</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the tip, it solved the error from the Arcade editor inside the Dashboard, but after I click "Done" it says that it is unable to execute the script (see the below screenshots). Any idea why this happens?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 07:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1485963#M9756</guid>
      <dc:creator>MariusVerdes</dc:creator>
      <dc:date>2024-06-06T07:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1486169#M9760</link>
      <description>&lt;P&gt;This code (leaving off the calculation to No Count) give me a FeatureSet. What does it do in your dashboard?&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var noCount = 0
var ratioDict = {
  'fields': [
    {'name':'No_Count', 'type':'esriFieldTypeInteger'}
  ],
  'geometryType': '',
  'features': [{
    'attributes': {
      'No_Count': noCount
     }
  }]
};

// Transform the dictionary into a FeatureSet and return it
return FeatureSet(ratioDict);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 13:22:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1486169#M9760</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-06-06T13:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade for Data Expression</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1486211#M9761</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;No, it gives the following error "&lt;SPAN&gt;Execution error - Line: 15, 7: Invalid parameter"&lt;BR /&gt;&lt;BR /&gt;But, I tried a workaround with an attribute rule and it gives me what I need. The code for the attribute rule is:&lt;BR /&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var countNo = 0;&lt;/P&gt;&lt;P&gt;if ($feature.Q1_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q1_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q1_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q1_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q2_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q2_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_7 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_8 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_9 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_10 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q3_11 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q4_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q5_7 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5a == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5b == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5c == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5d == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5e == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5f == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5g == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5h == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_5i == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_7a == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_7b == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_8 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_9 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_10 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_11 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_12 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_13 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_14 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q6_15 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_7 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_8 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_9 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_10 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_11 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_12 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_13 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_14 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_15 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_16 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_17 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_18 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_19 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_20 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_21 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q7_22 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_6 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_7 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q8_8 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q9_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q9_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q9_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q10_1 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q10_2 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q10_3 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q10_4 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if ($feature.Q10_5 == 'No') {&lt;BR /&gt;countNo += 1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;return countNo;"&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 12:05:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/arcade-for-data-expression/m-p/1486211#M9761</guid>
      <dc:creator>MariusVerdes</dc:creator>
      <dc:date>2024-06-10T12:05:18Z</dc:date>
    </item>
  </channel>
</rss>

