<?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 not use a list item more than once. in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1073005#M35575</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/401036"&gt;@AndrewPadilla&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;I have tried to use the javascript code in a &lt;SPAN&gt;'&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;myFunctions.js'&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;function HasDups (myArray){&lt;BR /&gt;&lt;BR /&gt;return new Set(myArray).size !== myArray.length;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;but I have a error in the script called&amp;nbsp;"Expected token ;"&amp;nbsp; &lt;SPAN&gt;If you know what the error is, could you tell me a solution&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 27 Jun 2021 18:33:04 GMT</pubDate>
    <dc:creator>AndreaBaquerizo</dc:creator>
    <dc:date>2021-06-27T18:33:04Z</dc:date>
    <item>
      <title>How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/847735#M22509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a select one list in a repeat where I want to stop, or warn, a user if they pick an item more than once during the repeats.&amp;nbsp; This list is about 1,300 items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a field that keeps a running list from my repeat&lt;/P&gt;&lt;P&gt;join(", ", ${SpeciesList})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this constraint on the list&amp;nbsp; not(contains(${AllPlants}, ${SpeciesList}))&amp;nbsp; but it always triggers since it is in the list as soon as i pick it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to count the number of string occurrences?&amp;nbsp; Or remove it from the check somehow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any ideas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2019 15:32:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/847735#M22509</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-02-27T15:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/847736#M22510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this to kinda work but it has issues.&amp;nbsp; What I do is take off the last 3 chars of the running list, thus breaking up that last value - which is then not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not(contains(substr(${AllPlants}, 0, string-length(${AllPlants}) - 3), ${SpeciesList}))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you go down the repeat in order this works.&amp;nbsp; But this falls apart if you go backwards in a repeat and try and change a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be nice is a count of the number of substrings found.&amp;nbsp; so substr("XXXXX", "X") returns 5 not just true false.&amp;nbsp; Or a contains that returns the position the string was found would work also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any ideas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 22:01:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/847736#M22510</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2019-03-04T22:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1023703#M32302</link>
      <description>&lt;P&gt;Trying to implement your solution because I had problems with the JavaScript function. However, the question I'm trying to add this constraint to is a decimal type, which is causing issues. I eventually figured out how to calculate a version of my list of entries with the current entry removed (non-trivial). However, because Survey123 lists appear to be a string type at their core rather than a true list, any subsequent value that matches part of a previous entry will not be allowed. For example, if my list of entries is "1,1.5,3" and I try to enter 5, it won't allow it since 1.5 contains a 5. Any suggestions? All entries will be positive values that are divisible by 0.5.&lt;/P&gt;&lt;P&gt;For reference, here's the complicated formula I came up with that calculates a version of the entries list with the current entry removed:&amp;nbsp;if(string-length(${InterceptList})=string-length(string(${PointDistance_m})),"",substr(${InterceptList},0,string-length(${InterceptList})-string-length(string(${PointDistance_m}))))&lt;/P&gt;&lt;P&gt;${InterceptList} is the raw list and ${PointDistance_m} is the question I'm trying to constrain. Have to coerce values to string, and the if statement was necessary because any time I was making an initial entry it would appear in the list (removal of the current entry only seemed to work for entries after the first).&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2021 22:55:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1023703#M32302</guid>
      <dc:creator>EvanR</dc:creator>
      <dc:date>2021-02-04T22:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1024346#M32329</link>
      <description>&lt;P&gt;Think I may have solved it: I calculated a second version of the value in question by multiplying each entry by a constant and use THAT for the list and the duplicate check. I haven't yet tested it fully but it seems to work so far. First tried adding a constant, but that caused problems as well (e.g., if you add 0.3, 200, etc. to 16.5 and to 6.5 the latter will still be a substring of the former).&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 14:44:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1024346#M32329</guid>
      <dc:creator>EvanR</dc:creator>
      <dc:date>2021-02-08T14:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032672#M32924</link>
      <description>&lt;P&gt;I am looking for this solution as well. I attempted to use JavaScript as described in&amp;nbsp;&lt;/P&gt;&lt;P&gt;JavaScript funtions in Survey123 (&lt;A href="https://community.esri.com/t5/arcgis-survey123-blog/extending-survey123-smart-forms-with-custom-js-functions/ba-p/898782" target="_blank" rel="noopener"&gt;https://community.esri.com/t5/arcgis-survey123-blog/extending-survey123-smart-forms-with-custom-js-functions/ba-p/898782)&lt;/A&gt;&amp;nbsp;but was unable to reproduce a working HasDups function in Survey123.&amp;nbsp; Has anyone else been able to successfully reproduce this example?&amp;nbsp; The constraint does not seem to register correctly. In the example below any fruits entered are an invalid selection with the constraint (${dups}=false).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AndrewPadilla_1-1614812922297.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/7448i96CAD58DB1A75335/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AndrewPadilla_1-1614812922297.png" alt="AndrewPadilla_1-1614812922297.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I attached an example file and script:&lt;/P&gt;&lt;P&gt;function HasDups (myArray){&lt;BR /&gt;&lt;BR /&gt;return new Set(myArray).size !== myArray.length;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 23:18:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032672#M32924</guid>
      <dc:creator>AndrewPadilla</dc:creator>
      <dc:date>2021-03-03T23:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032827#M32932</link>
      <description>&lt;P&gt;Did you download &lt;A href="https://community.esri.com/ccqpr47374/attachments/ccqpr47374/arcgis-survey123-questions/19104/1/Distinct%20Check.zip" target="_self"&gt;repeats.js&lt;/A&gt; and place it in an "extensions" directory within your survey directory? You have to do that before you can call the script from your XLSForm. I was able to get it to work in Survey123 Connect once I figured out that step, but it didn't work when deployed to field tablets because of some restrictions on what exact flavors of AGOL etc. allow JavaScript, which was a bummer.&lt;/P&gt;&lt;P&gt;See &lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/can-i-prevent-a-value-from-being-submitted-multiple-times-in-a/td-p/833935" target="_self"&gt;here&lt;/A&gt; and also &lt;A href="https://community.esri.com/t5/arcgis-survey123-questions/survey123-form-now-shows-quot-scripts-disabled-quot-for-value/m-p/1026726" target="_self"&gt;here&lt;/A&gt;. Let me know if that doesn't work for you and I'll take a closer look.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 13:13:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032827#M32932</guid>
      <dc:creator>EvanR</dc:creator>
      <dc:date>2021-03-04T13:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032998#M32943</link>
      <description>&lt;P&gt;Thanks for your response&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/427362"&gt;@EvanR&lt;/a&gt;. Yes, I should have mentioned, I had placed 'myFunctions.js' in a&amp;nbsp;&lt;EM&gt;scripts&lt;/EM&gt; folder (I believe the &lt;EM&gt;extensions&lt;/EM&gt; folder works the same). In the end I did get it to work. It was as simple as placing quotation marks around &lt;STRONG&gt;false&lt;/STRONG&gt; in my constraint. I have attached a revised working example. JavaScript files cannot be added here. One would need to create a 'myFunctions.js' and use the following function and place it in a scripts folder with in the survey folder:&amp;nbsp;&lt;/P&gt;&lt;P&gt;function HasDups (myArray){&lt;BR /&gt;&lt;BR /&gt;return new Set(myArray).size !== myArray.length;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 18:50:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1032998#M32943</guid>
      <dc:creator>AndrewPadilla</dc:creator>
      <dc:date>2021-03-04T18:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1073005#M35575</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/401036"&gt;@AndrewPadilla&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;I have tried to use the javascript code in a &lt;SPAN&gt;'&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;myFunctions.js'&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;function HasDups (myArray){&lt;BR /&gt;&lt;BR /&gt;return new Set(myArray).size !== myArray.length;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;but I have a error in the script called&amp;nbsp;"Expected token ;"&amp;nbsp; &lt;SPAN&gt;If you know what the error is, could you tell me a solution&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Jun 2021 18:33:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1073005#M35575</guid>
      <dc:creator>AndreaBaquerizo</dc:creator>
      <dc:date>2021-06-27T18:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1073330#M35595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/88173"&gt;@AndreaBaquerizo&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I am not an expert in writing JavaScript but it looks like you have the formula correct as pasted above but the screen shot you attached does not match. You need to remove the space between "(myArray)" and ".size", and also add a space between ".size" and "!" (see attachment). Easiest way would be to copy and paste the original formula. I attached a screen shot of my .js file. I hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 17:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1073330#M35595</guid>
      <dc:creator>AndrewPadilla</dc:creator>
      <dc:date>2021-06-28T17:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1075007#M35680</link>
      <description>&lt;P&gt;The JS fuction works great it my dev version of my survey, but as the production version will be a public survey I just realised its not going to work!&amp;nbsp; Is there another way to achieve the same result?&amp;nbsp; Within the repeat the user has a list of 12 target speices to survey and count, I dont wan them counting the same species twice as a seperate record.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 00:42:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1075007#M35680</guid>
      <dc:creator>ChrisRoberts2</dc:creator>
      <dc:date>2021-07-02T00:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124010#M39127</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/16421"&gt;@DougBrowning&lt;/a&gt;&amp;nbsp;I had a question about your way of checking for duplicates. Does it work in the Survey123 Web app? I have something working in the mobile app version, but it doesn't work in the web app survey. I am not using a javascript file. Any Thoughts? Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 20:33:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124010#M39127</guid>
      <dc:creator>CSR_GarinHirata</dc:creator>
      <dc:date>2021-12-08T20:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124013#M39128</link>
      <description>&lt;P&gt;I would think it would work.&amp;nbsp; I do not use the web much.&amp;nbsp; One common gottcha in the web is + does not work to combine strings.&amp;nbsp; You have to use concat().&amp;nbsp; &amp;nbsp;Best thing is to post the form.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 20:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124013#M39128</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-12-08T20:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124016#M39129</link>
      <description>&lt;P&gt;I highlighted the repeat section in the excel spreadsheet. Thanks for taking a look.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 20:58:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124016#M39129</guid>
      <dc:creator>CSR_GarinHirata</dc:creator>
      <dc:date>2021-12-08T20:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124100#M39137</link>
      <description>&lt;P&gt;I see it works in Connect fine&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DougBrowning_0-1639005926892.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29188i45469B7183166F82/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DougBrowning_0-1639005926892.png" alt="DougBrowning_0-1639005926892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry I have no idea on the web.&amp;nbsp; I do not see anything but I never use the web forms so I really do not know.&amp;nbsp; Maybe someone else will.&amp;nbsp; Sorry&lt;/P&gt;&lt;P&gt;Oh wait I see you are using reserved words. These little green boxes mean not cool.&amp;nbsp; &amp;nbsp;Could be it.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DougBrowning_1-1639006052658.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29189i72356E2495D7AA2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DougBrowning_1-1639006052658.png" alt="DougBrowning_1-1639006052658.png" /&gt;&lt;/span&gt;&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="DougBrowning_2-1639006072545.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29190i3305859048752680/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DougBrowning_2-1639006072545.png" alt="DougBrowning_2-1639006072545.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also not sure you can start a field with a special char.&amp;nbsp; Prob not&lt;/P&gt;&lt;P&gt;_size&lt;/P&gt;&lt;P&gt;Hope that does it&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 23:29:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124100#M39137</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-12-08T23:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124114#M39138</link>
      <description>&lt;P&gt;I made some of those changes, but with no luck. Thanks for all your help. I might have to make a call into esri support to see what might be wrong.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&amp;nbsp;&lt;/P&gt;&lt;P&gt;GH&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 23:50:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124114#M39138</guid>
      <dc:creator>CSR_GarinHirata</dc:creator>
      <dc:date>2021-12-08T23:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124126#M39142</link>
      <description>&lt;P&gt;Did you publish it as a all new layer?&amp;nbsp; If not those fields would still be in the service and could still cause issues.&amp;nbsp; Its worth a shot.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 00:29:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124126#M39142</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-12-09T00:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124612#M39157</link>
      <description>&lt;P&gt;I tried with no success. I ran it by esri. So we'll see what they find out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 21:22:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1124612#M39157</guid>
      <dc:creator>CSR_GarinHirata</dc:creator>
      <dc:date>2021-12-09T21:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1162663#M41994</link>
      <description>&lt;P&gt;I have used this workaround for a very similar use case and found it very useful! I do hope the count of duplicates becomes possible at some point!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 18:43:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1162663#M41994</guid>
      <dc:creator>NourSalam</dc:creator>
      <dc:date>2022-04-08T18:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1164789#M42131</link>
      <description>&lt;P&gt;I’ve been mean to update this there’s been a couple new issues come up in the new three. 3.14 engine. I did get it working but it’s a little funky I’ll have to come back and post it I’m in the field now. &amp;nbsp;Basically you have to use once around the join so that you can go backwards. Then on your check add a comma in there on the check then it won’t find partial strings. And then the real funky one is join works differently on the very first element see you got a run a check for that. &amp;nbsp;ifI don’t post this next week remind me.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 16:26:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1164789#M42131</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2022-04-15T16:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to not use a list item more than once.</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1260486#M47590</link>
      <description>&lt;P&gt;I am also interested in not only counting unique selections across repeats, but also then using the returned selections to calculate a value.&amp;nbsp; Has there been any advance in this in the last 14 months?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 15:27:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/how-to-not-use-a-list-item-more-than-once/m-p/1260486#M47590</guid>
      <dc:creator>RobertGeitner</dc:creator>
      <dc:date>2023-02-22T15:27:52Z</dc:date>
    </item>
  </channel>
</rss>

