<?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 data expression to return duplicate values in a dashboard list in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508739#M60435</link>
    <description>&lt;P&gt;Great question! Here's another yikes! When I try to do a count on the unique values, nothing shows up in the results. I can do a count on the fs (62000 records), but not unique values. I actually did open my layer up in pro and there is around 200 duplicate records when considering nulls as duplicates. If not considering nulls, there are about 3 duplicates. Unfortunately I have to display it in a list on dashboard, because the end user will not be using pro.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2024 17:13:49 GMT</pubDate>
    <dc:creator>sophered</dc:creator>
    <dc:date>2024-07-23T17:13:49Z</dc:date>
    <item>
      <title>Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506146#M60272</link>
      <description>&lt;P&gt;Hello! I am trying to isolate and display duplicate values in a field in a dashboard list element. I was thinking of using the distinct function to do this but have not had any luck. Here is what I have so far!&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var portal = Portal('portal')
var fs = FeatureSetByPortalItem(portal, "itemid", 0, ['*'],true)
var uniquevalues = Distinct(fs, "fieldname")
return Filter(fs, "fieldname NOT IN @uniquevalues")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 13:20:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506146#M60272</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-17T13:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506155#M60274</link>
      <description>&lt;P&gt;You can use GroupBy, getting the count of each attribute in your field, then returning the counts above 1.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(
  Portal("https://www.arcgis.com"),
  "6200db0b80de4341ae8ee2b62d606e67",
  0,
  ["*"],
  true
);
var gb = GroupBy(
  fs,
  ["FLOORCOUNT"],
  { name: "Count", expression: "1", statistic: "COUNT" }
);
Filter(gb, "Count &amp;gt; 1");&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 17 Jul 2024 13:50:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506155#M60274</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-17T13:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506158#M60275</link>
      <description>&lt;P&gt;You're close, but your filter statement isn't going to work. Using &lt;STRONG&gt;Distinct&lt;/STRONG&gt; against a FeatureSet returns another FeatureSet. Even if it returned an array, your filter expression needs to be SQL, where IN is formatted:&lt;/P&gt;&lt;PRE&gt;IN ('value 1', 'value 2', 'etc')&lt;/PRE&gt;&lt;P&gt;We can get there in just a few more lines. Put this between the third and fourth lines and see what happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// loop through distinct values and pouplate SQL string
var val_arr = []

for (var v in uniquevalues) {
  Push(val_arr, `'${v['fieldname']}'`
}

var sql = `fieldname NOT IN (${Concatenate(val_arr, ', ')})`&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 14:14:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506158#M60275</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-22T14:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506172#M60276</link>
      <description>&lt;P&gt;I'm getting a parse error on the sql variable line&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var portal = Portal('portal')
var fs = FeatureSetByPortalItem(portal, "itemid", 0, ['*'],true)
var uniquevalues = Distinct(fs, "fieldname")
var val_arr = []
for(var v in uniquevalues) {
    Push(val_arr, `'${v['fieldname']}'`)
}

var sql = `fieldname NOT IN (${Concatenate([val_arr, ', ')})`
return Filter(fs, sql)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;is there something that I'm doing wrong here?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 14:32:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1506172#M60276</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-17T14:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1507939#M60394</link>
      <description>&lt;P&gt;I tried this approach and unfortunately it gives me an "unable to execute arcade script error." it seems to work when i test run it.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 14:06:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1507939#M60394</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-22T14:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1507941#M60395</link>
      <description>&lt;P&gt;That was my typo. There should be no square bracket in the Concatenate function.&lt;/P&gt;&lt;PRE&gt;var sql = `fieldname NOT IN (${Concatenate(val_arr, ', ')})`&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I'll edit the original post to reflect the correction.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 14:13:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1507941#M60395</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-22T14:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508523#M60420</link>
      <description>&lt;P&gt;unfortunately when i test the expression, it gives me nothing in the results. my dataset is quite large (~60,000 records), could this be an issue?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 12:45:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508523#M60420</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T12:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508526#M60421</link>
      <description>&lt;P&gt;Distinct uses SQL; on the back-end, it's a really simple expression that the server can evaluate quickly. Looking for distinct values in a single field with that many records should not take long at all.&lt;/P&gt;&lt;P&gt;Another suggestion: try limiting the fields and geometry coming in through the FeatureSet function. That will cut back on the potential data being transferred by the server, and usually speeds things up.&lt;/P&gt;&lt;P&gt;Can you try just returning the distinct values and seeing what it looks like?&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var portal = Portal('portal')
var fs = FeatureSetByPortalItem(portal, "itemid", 0, ['fieldname'], false)
return Distinct(fs, "fieldname")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Also, any chance this layer is public? Testing the expression against the real data would be helpful. I can write a similar expression against my own data which works just fine.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 12:50:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508526#M60421</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T12:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508631#M60428</link>
      <description>&lt;P&gt;Thank you for the valuable information about the distinct function! By just returning distinct values, it is able to pull up records from the specified field that are unique. Unfortunately the layer is not public. It should be noted, however that I am working off of version 10.9.1, so 1.12 for arcade (meant to put this post under the enterprise portal questions but accidentally put it under arcgis online, sorry!)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 15:18:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508631#M60428</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T15:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508640#M60429</link>
      <description>&lt;P&gt;No worries! At 1.12, you should have access to all the functions you need for this.&lt;/P&gt;&lt;P&gt;Back on the original expression I suggested, what do you see if you try &lt;STRONG&gt;return sql&lt;/STRONG&gt; before the last line?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 15:28:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508640#M60429</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T15:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508659#M60430</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sophered_1-1721750466407.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110377iAD210AB39D8DC81D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sophered_1-1721750466407.png" alt="sophered_1-1721750466407.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Unfortunately nothing shows up in the Results when I try to return sql&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 16:02:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508659#M60430</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T16:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508671#M60431</link>
      <description>&lt;P&gt;Interesting… At this point, we just need some Console statements. Run this, what does the "Messages" tab say?&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var portal = Portal('portal')
var fs = FeatureSetByPortalItem(portal, "itemid", 0, ['*'],true)
var uniquevalues = Distinct(fs, "fieldname")
Console('Unique Values', uniquevalues)

var val_arr = []
for(var v in uniquevalues) {
    Console(v, v['fieldname'])
    Push(val_arr, `'${v['fieldname']}'`)
    Console(val_arr)
}

var sql = `fieldname NOT IN (${Concatenate([val_arr, ', ')})`
return Filter(fs, sql)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 23 Jul 2024 16:05:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508671#M60431</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T16:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508692#M60433</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sophered_0-1721752166471.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110382iA5716B3F1BD2B7CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sophered_0-1721752166471.png" alt="sophered_0-1721752166471.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;A few minutes after pressing test, I am met with this lovely screen : (&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 16:29:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508692#M60433</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T16:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508723#M60434</link>
      <description>&lt;P&gt;Yikes! How many distinct values are there, anyway?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 17:03:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508723#M60434</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T17:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508739#M60435</link>
      <description>&lt;P&gt;Great question! Here's another yikes! When I try to do a count on the unique values, nothing shows up in the results. I can do a count on the fs (62000 records), but not unique values. I actually did open my layer up in pro and there is around 200 duplicate records when considering nulls as duplicates. If not considering nulls, there are about 3 duplicates. Unfortunately I have to display it in a list on dashboard, because the end user will not be using pro.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 17:13:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508739#M60435</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T17:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508752#M60437</link>
      <description>&lt;P&gt;The code I posted initially used a layer with 68K records, so that size of data shouldn't be a problem. Another way to cut down on the request is not to return the geometry of the features.&lt;/P&gt;&lt;P&gt;I'm curious on what result you got when doing a test run vs. getting the error in the Dashboard&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 17:31:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508752#M60437</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-07-23T17:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508753#M60438</link>
      <description>&lt;P&gt;Oh, gosh. Well, that would explain it, we're creating a SQL string that's going to be many many thousands of characters long. It's probably the wrong approach to look for the "good" values and build a filter based on the "bad" ones.&lt;/P&gt;&lt;P&gt;Let's take a totally different approach. I like &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt; 's use of GroupBy, but the output of that won't include any of the feature attributes that we need. But it &lt;EM&gt;could &lt;/EM&gt;give us one of the objectIDs with some tweaking, which we could pass into a Filter on the original featureset.&lt;/P&gt;&lt;P&gt;Do you know if there are any cases of more than two duplicates? This expression could probably get rid of duplicates when there's 1 extra copy.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(…)

var dups = GroupBy(
  fs,
  'some_field',
  [
    {name: 'dup_id', expression: 'objectid', statistic: 'MAX'},
    {name; 'feat_count', expression: '1', statistic: 'SUM'}
  ]
)

var dups = Filter(dups, 'feat_count &amp;gt; 1')

var dup_ids = []

for (var d in dups) {
  Push(dup_ids, d['dup_id'])
}

return Filter(
  fs,
  `objectid not in (${Concatenate(dup_ids, ',')})`
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 17:32:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508753#M60438</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T17:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508797#M60443</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sophered_0-1721758593140.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110406iEA266044EC36FA18/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sophered_0-1721758593140.png" alt="sophered_0-1721758593140.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;so i tried that expression and i once again encountered the issue where it does not give any results and does not let me press "done" to exit the expression. if including the nulls, then there are plenty of cases with more than 1 duplicate (although, id rather not include the nulls). there probably will be cases in the future where there is more than 1 duplicate and id like for it to display those as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 18:23:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508797#M60443</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T18:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508813#M60447</link>
      <description>&lt;P&gt;so this is what i tried&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var portal = Portal('portal')
var fs = FeatureSetByPortalItem(portal, "itemid", 0, ['*'],false)
var gb = Groupby(fs, 'EXTERNALSTREETKEY', {name: 'Count', expression: '1', statistic: 'COUNT'});
var filterfs = Filter(gb, "Count &amp;gt; 1")
return filterfs&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sophered_0-1721760798603.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/110409i98C8F1277113845A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sophered_0-1721760798603.png" alt="sophered_0-1721760798603.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and this is what i got! more than nothing in the results, although, my pro tells me otherwise that there should be duplicates. and i am unable to press done in the bottom left corner. i think thats the "unable to execute arcade script" kind of error thing. i did make some test data and it works perfectly (although it is a MUCH smaller dataset) but when i change the itemid to the actual dataset, it does not work&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 18:56:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1508813#M60447</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-23T18:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using data expression to return duplicate values in a dashboard list</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1510246#M60502</link>
      <description>&lt;P&gt;after some tinkering, I found out that other fields on the same layer work perfectly fine with using the Groupby Method. The particular field that i am trying to use for this was a mixed case kinda field with special characters (@, .) I am unsure if this has a factor in it or not but it is interesting that it works perfectly for other fields as well, but not this one! I was wondering if i could try to use a Left function to pull only the first 10 characters, those are the only ones that need to be checked for unique-ness. and groupby those?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 19:25:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/using-data-expression-to-return-duplicate-values/m-p/1510246#M60502</guid>
      <dc:creator>sophered</dc:creator>
      <dc:date>2024-07-25T19:25:16Z</dc:date>
    </item>
  </channel>
</rss>

