<?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: Data Expression: Combined Category Count for Multiple Fields with Same Domain in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1684175#M11807</link>
    <description>&lt;P&gt;I don't think that's possible with single GroupBy, but I'd love to be proved wrong.&lt;/P&gt;&lt;P&gt;You'll have to do two GroupBys, one for each field. That will give you the count for each of the fields. Then you can combine them into a single table with the counts of both and their sums&lt;/P&gt;&lt;P&gt;Unfortunately, the GroupBy does strip the domain information from your result. But you can add that back in when combining the tables by looping through all of the domain codes. This code loops through all the domain codes (and this assumes you're using the same domain for both fields) and filters the grouped tables to get their counts.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(Portal("your portal"), itemID, 0, ["*"], false);
var primaryField = "Comment_Type";
var primary = GroupBy(
  fs,
  [primaryField],
  [{ name: "Primary Count", expression: primaryField, statistic: "Count" }]
);
var secondaryField = "Secondary_Type";
var secondary = GroupBy(
  fs,
  [secondaryField],
  [{ name: "Secondary Count", expression: secondaryField, statistic: "Count" }]
);

var theDomain = Domain(fs, primaryField).codedValues;
//return theDomain;

var features = [];

for (var dom of theDomain) {
  var code = dom.code;

  var filterPrime = Filter(primary, "Comment_Type = @code");
  var filterSecondary = Filter(secondary, "Secondary_Type = @code");
  var primaryCount = iif(
    Count(filterPrime) &amp;gt; 0,
    First(filterPrime)["Primary Count"],
    0
  );
  var secondaryCount = iif(
    Count(filterSecondary) &amp;gt; 0,
    First(filterSecondary)["Secondary Count"],
    0
  );
  Push(
    features,
    {
      attributes:
        {
          Comment: dom.name,
          Primary: primaryCount,
          Secondary: secondaryCount,
          Total: primaryCount + secondaryCount
        }
    }
  );
}

FeatureSet(
  {
    fields: [
      { name: "Comment", type: "esriFieldTypeString" },
      { name: "Primary", type: "esriFieldTypeInteger" },
      { name: "Secondary", type: "esriFieldTypeInteger" },
      { name: "Total", type: "esriFieldTypeInteger" }
    ],
    features: features
  }
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;This code worked properly for my test data and I hopefully didn't get anything wrong when substituting in your fields.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-12_16-42-30.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148392iA1B9C104200764BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-12_16-42-30.PNG" alt="2026-02-12_16-42-30.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Feb 2026 21:44:50 GMT</pubDate>
    <dc:creator>KenBuja</dc:creator>
    <dc:date>2026-02-12T21:44:50Z</dc:date>
    <item>
      <title>Data Expression: Combined Category Count for Multiple Fields with Same Domain</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1684087#M11806</link>
      <description>&lt;P&gt;I have points that are given a primary category field and secondary category field of the same domain. I am attempting to use a pie chart to display the total count of points per category from both fields. I am trying to create a data expression to sum the count of categories from both fields:&lt;/P&gt;&lt;P&gt;'Comment_Type'&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-02-12 102904.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148373i7FEFAAD575D7F009/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-02-12 102904.png" alt="Screenshot 2026-02-12 102904.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;'Secondary_Type'&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2026-02-12 102954.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148374i2A17EE021B48FF2F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-02-12 102954.png" alt="Screenshot 2026-02-12 102954.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;p&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'&lt;A href="https://xyzxyzxy.maps.arcgis.com" target="_blank" rel="noopener"&gt;https://xyzxyzxy.maps.arcgis.com&lt;/A&gt;'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;itemId&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;FeatureSetByPortalItem&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Portal&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;p&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;itemId&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, [&lt;/SPAN&gt;&lt;SPAN&gt;'*'&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;SPAN&gt;false&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;comment_stats&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;GroupBy&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;fs&lt;/SPAN&gt;&lt;SPAN&gt;, [&lt;/SPAN&gt;&lt;SPAN&gt;'Comment_Type'&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [ { &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Comment_Type'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;expression&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Comment_Type'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;statistic&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'COUNT'&lt;/SPAN&gt;&lt;SPAN&gt; }, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Secondary_Type'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;expression&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Secondary_Type'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;statistic&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'COUNT'&lt;/SPAN&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#FF0000"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2026-02-12 102623.png" style="width: 367px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148372iD8E9AE9130A7CD48/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-02-12 102623.png" alt="Screenshot 2026-02-12 102623.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;How do I get the table to use the domain label for the first column?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;Why does the Secondary_Type column not match its actual values?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;Is there a more efficient way of doing this?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;comment_totals&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;GroupBy&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;comment_stats&lt;/SPAN&gt;&lt;SPAN&gt;, [&lt;/SPAN&gt;&lt;SPAN&gt;'Comment_Type'&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[ { &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Totals'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;expression&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'Comment_Type + Secondary_Type'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;statistic&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'SUM'&lt;/SPAN&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;comment_totals&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Feb 2026 18:39:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1684087#M11806</guid>
      <dc:creator>SamSlater</dc:creator>
      <dc:date>2026-02-12T18:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data Expression: Combined Category Count for Multiple Fields with Same Domain</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1684175#M11807</link>
      <description>&lt;P&gt;I don't think that's possible with single GroupBy, but I'd love to be proved wrong.&lt;/P&gt;&lt;P&gt;You'll have to do two GroupBys, one for each field. That will give you the count for each of the fields. Then you can combine them into a single table with the counts of both and their sums&lt;/P&gt;&lt;P&gt;Unfortunately, the GroupBy does strip the domain information from your result. But you can add that back in when combining the tables by looping through all of the domain codes. This code loops through all the domain codes (and this assumes you're using the same domain for both fields) and filters the grouped tables to get their counts.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(Portal("your portal"), itemID, 0, ["*"], false);
var primaryField = "Comment_Type";
var primary = GroupBy(
  fs,
  [primaryField],
  [{ name: "Primary Count", expression: primaryField, statistic: "Count" }]
);
var secondaryField = "Secondary_Type";
var secondary = GroupBy(
  fs,
  [secondaryField],
  [{ name: "Secondary Count", expression: secondaryField, statistic: "Count" }]
);

var theDomain = Domain(fs, primaryField).codedValues;
//return theDomain;

var features = [];

for (var dom of theDomain) {
  var code = dom.code;

  var filterPrime = Filter(primary, "Comment_Type = @code");
  var filterSecondary = Filter(secondary, "Secondary_Type = @code");
  var primaryCount = iif(
    Count(filterPrime) &amp;gt; 0,
    First(filterPrime)["Primary Count"],
    0
  );
  var secondaryCount = iif(
    Count(filterSecondary) &amp;gt; 0,
    First(filterSecondary)["Secondary Count"],
    0
  );
  Push(
    features,
    {
      attributes:
        {
          Comment: dom.name,
          Primary: primaryCount,
          Secondary: secondaryCount,
          Total: primaryCount + secondaryCount
        }
    }
  );
}

FeatureSet(
  {
    fields: [
      { name: "Comment", type: "esriFieldTypeString" },
      { name: "Primary", type: "esriFieldTypeInteger" },
      { name: "Secondary", type: "esriFieldTypeInteger" },
      { name: "Total", type: "esriFieldTypeInteger" }
    ],
    features: features
  }
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;This code worked properly for my test data and I hopefully didn't get anything wrong when substituting in your fields.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-12_16-42-30.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148392iA1B9C104200764BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-12_16-42-30.PNG" alt="2026-02-12_16-42-30.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 21:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1684175#M11807</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-12T21:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Data Expression: Combined Category Count for Multiple Fields with Same Domain</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1685015#M11813</link>
      <description>&lt;P&gt;This is excellent! KenBuja I see why you have that "MVP" tag next to your name!&lt;/P&gt;&lt;P&gt;Is there a particular resource you would point newbies to to learn this level of arcade?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 21:06:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1685015#M11813</guid>
      <dc:creator>SamuelSlaterPNW</dc:creator>
      <dc:date>2026-02-18T21:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data Expression: Combined Category Count for Multiple Fields with Same Domain</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1685157#M11815</link>
      <description>&lt;P&gt;If this did answer your question, don't forget to click the "Accept as Solution" button. That will help others in research similar questions. And help me maintain my MVP status &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The best place to start would be the &lt;A href="https://developers.arcgis.com/arcade/" target="_self"&gt;Home page&lt;/A&gt; of the Arcade documentation, focusing on the Language features section. I would also take a look at some of the Arcade blogs that Esri has written, such with &lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/pop-ups-arcade-essentials#examples" target="_self"&gt;this one&lt;/A&gt;, which focuses on scripting for popup. I would also look at some of the &lt;A href="https://community.esri.com/t5/forums/searchpage/tab/message?filter=authorId,solvedThreads&amp;amp;q=arcade&amp;amp;noSynonym=false&amp;amp;solved=true&amp;amp;author_id=363906&amp;amp;collapse_discussion=true" target="_self"&gt;posts&lt;/A&gt; that&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;has written, since he has scripted some pretty nifty solutions to various problems.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 14:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/data-expression-combined-category-count-for/m-p/1685157#M11815</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-19T14:05:14Z</dc:date>
    </item>
  </channel>
</rss>

