<?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 Assistance with Removing Duplicates from Dashboard Lists in ArcGIS Online in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/assistance-with-removing-duplicates-from-dashboard/m-p/1410125#M9417</link>
    <description>&lt;P&gt;Dear ArcGIS Online&amp;nbsp; Team,&lt;/P&gt;&lt;P&gt;I am reaching out to seek assistance with an issue I am encountering on my ArcGIS Online dashboard. As illustrated in the attached screenshot, I am experiencing a problem with duplicate entries in the lists on my dashboard. These repetitions are not intended and I am looking for a way to prevent or eliminate these duplicates to ensure that each entry is unique.&lt;/P&gt;&lt;P&gt;Could you provide guidance on how I can remove or prevent these duplicate entries from appearing in the lists on my dashboard? Are there specific filter settings or another configuration method that can address this issue?&lt;/P&gt;&lt;P&gt;Thank you in advance for your help and advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Zrzut ekranu 2024-04-16 124259.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/100997iC91AFF7FEC1AA6A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Zrzut ekranu 2024-04-16 124259.png" alt="Zrzut ekranu 2024-04-16 124259.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Apr 2024 10:44:29 GMT</pubDate>
    <dc:creator>ŁukaszMacieja</dc:creator>
    <dc:date>2024-04-16T10:44:29Z</dc:date>
    <item>
      <title>Assistance with Removing Duplicates from Dashboard Lists in ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/assistance-with-removing-duplicates-from-dashboard/m-p/1410125#M9417</link>
      <description>&lt;P&gt;Dear ArcGIS Online&amp;nbsp; Team,&lt;/P&gt;&lt;P&gt;I am reaching out to seek assistance with an issue I am encountering on my ArcGIS Online dashboard. As illustrated in the attached screenshot, I am experiencing a problem with duplicate entries in the lists on my dashboard. These repetitions are not intended and I am looking for a way to prevent or eliminate these duplicates to ensure that each entry is unique.&lt;/P&gt;&lt;P&gt;Could you provide guidance on how I can remove or prevent these duplicate entries from appearing in the lists on my dashboard? Are there specific filter settings or another configuration method that can address this issue?&lt;/P&gt;&lt;P&gt;Thank you in advance for your help and advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Zrzut ekranu 2024-04-16 124259.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/100997iC91AFF7FEC1AA6A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Zrzut ekranu 2024-04-16 124259.png" alt="Zrzut ekranu 2024-04-16 124259.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 10:44:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/assistance-with-removing-duplicates-from-dashboard/m-p/1410125#M9417</guid>
      <dc:creator>ŁukaszMacieja</dc:creator>
      <dc:date>2024-04-16T10:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Assistance with Removing Duplicates from Dashboard Lists in ArcGIS Online</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/assistance-with-removing-duplicates-from-dashboard/m-p/1412506#M9452</link>
      <description>&lt;P&gt;There is more than one answer for something like this, and to narrow it down you might need to further explain your situation (the data and what you're trying to accomplish).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A couple of solutions i can think of for repeating values are:&lt;/P&gt;&lt;P&gt;1. use the dashboard 'category selector' widget and &lt;EM&gt;group by&lt;/EM&gt; option.&lt;/P&gt;&lt;P&gt;2. use data expression option for lists to group by the field you're displaying. A quick and dirty groupby data expression is this:&lt;/P&gt;&lt;LI-CODE lang="swift"&gt;//portal
var port = Portal("https://www.arcgis.com")
//itemID from AGOL
var itemID = "xxxxxxxxxxxx"
//feature set
var FS = FeatureSetByPortalItem(port, itemID)

//first parameter passes in our featureSet. second parameter is the field (or expression) which we are grouping by. the third parameter is the statistics which includes: name of field/column for output, expression, and statistic. 
var FSgroup = GroupBy(FS, ['field name here'], [{name: 'output name here', expression:'1',statistic:'COUNT'}])

return FSgroup&lt;/LI-CODE&gt;&lt;P&gt;but please reference esri sources for more information:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://www.esri.com/arcgis-blog/products/ops-dashboard/announcements/introducing-data-expressions-in-arcgis-dashboards/" target="_blank"&gt;https://www.esri.com/arcgis-blog/products/ops-dashboard/announcements/introducing-data-expressions-in-arcgis-dashboards/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/featureset_functions/#domain" target="_blank"&gt;https://developers.arcgis.com/arcade/function-reference/featureset_functions/#domain&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcade-expressions/tree/master/dashboard_data" target="_blank"&gt;https://github.com/Esri/arcade-expressions/tree/master/dashboard_data&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 19:57:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/assistance-with-removing-duplicates-from-dashboard/m-p/1412506#M9452</guid>
      <dc:creator>KRankin</dc:creator>
      <dc:date>2024-04-19T19:57:20Z</dc:date>
    </item>
  </channel>
</rss>

