<?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 &amp;quot;First&amp;quot; function not working post June 2026 Update in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711936#M69142</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/512339"&gt;@timcneil&lt;/a&gt;&amp;nbsp;Thanks for following up with this. After clearing cache, the remaining maps/apps experiencing issues appear to be fixed. Much appreciated.&lt;BR /&gt;&lt;BR /&gt;CC&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/659479"&gt;@Tiff&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jul 2026 13:19:31 GMT</pubDate>
    <dc:creator>CarterHughes</dc:creator>
    <dc:date>2026-07-02T13:19:31Z</dc:date>
    <item>
      <title>Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711090#M69045</link>
      <description>&lt;P&gt;Before the June 2026 update, this Arcade expression worked completely fine in returning the intersecting Montgomery County Watershed ID. I have isolated the issue to being the First function. The layers, the intersect expression, everything works but stops once the First function is introduced to yield the first item in the FeatureSet and thus its attribute value to be returned. The First function now results in a continuous loading spin if a point is placed in a location where a intersect is yielded.&lt;/P&gt;&lt;P&gt;Expression as is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CarterHughes_0-1782823067147.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/154595i3BBC5252B7EF85C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CarterHughes_0-1782823067147.png" alt="CarterHughes_0-1782823067147.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Expression without First function, demonstrating the Intersects and preceding functions work:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CarterHughes_2-1782823528675.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/154597iFF17CCA3FB5E1F3A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CarterHughes_2-1782823528675.png" alt="CarterHughes_2-1782823528675.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how it looks in the Instant App editor:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CarterHughes_1-1782823153923.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/154596i0206283D8795055B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CarterHughes_1-1782823153923.png" alt="CarterHughes_1-1782823153923.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Arcade code:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;agol&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;"&lt;A href="https://www.arcgis.com" target="_blank"&gt;https://www.arcgis.com&lt;/A&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fc&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;agol&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"2a3f5e6851a04dcdb9d8a6f796e9a431"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fc_intersect&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Intersects&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;fc&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(!&lt;/SPAN&gt;&lt;SPAN&gt;IsEmpty&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;fc_intersect&lt;/SPAN&gt;&lt;SPAN&gt;)){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;First&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;fc_intersect&lt;/SPAN&gt;&lt;SPAN&gt;)[&lt;/SPAN&gt;&lt;SPAN&gt;'ID'&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;else&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;null&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This should be replicable with any editable layer given that the source layer for the intersect,&amp;nbsp;&lt;A href="https://mcplanning.maps.arcgis.com/home/item.html?id=2a3f5e6851a04dcdb9d8a6f796e9a431" target="_blank" rel="noopener"&gt;Watersheds used by Hansen (M-NCPPC)&lt;/A&gt;, is publicly shared.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am also submitting this as a case, but providing a link to this post since it enables screenshots to be shared.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2026 12:46:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711090#M69045</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-06-30T12:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711095#M69047</link>
      <description>&lt;P&gt;The workaround below works by avoiding the First function:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;agol&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;"&lt;A href="https://www.arcgis.com" target="_blank"&gt;https://www.arcgis.com&lt;/A&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fc&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;agol&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"2a3f5e6851a04dcdb9d8a6f796e9a431"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;fc_intersect&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Intersects&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;fc&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;f&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;fc_intersect&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'ID'&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;null&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Jun 2026 12:55:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711095#M69047</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-06-30T12:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711113#M69049</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/469080"&gt;@CarterHughes&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry to hear you're experiencing an issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We had a similar bug reported to Support that will have a fix going out tonight but it primarily impacted feature layers with very large numbers of features.&lt;/P&gt;&lt;P&gt;However, it may address this issue as well. Please check back after tonight's fix goes out and if it still is not fixed I would suggest reaching out to Support so we can take a closer look.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Taylor&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2026 13:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711113#M69049</guid>
      <dc:creator>timcneil</dc:creator>
      <dc:date>2026-06-30T13:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711127#M69051</link>
      <description>&lt;P&gt;Good to know about the potential fix shortly. I will follow up on this tomorrow.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2026 13:33:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711127#M69051</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-06-30T13:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711538#M69105</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/512339"&gt;@timcneil&lt;/a&gt;&amp;nbsp;this issue is still active as of this morning. Any expression with the First function freezes and thus if used, locks all editing within the smart form aware editing sessions.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CarterHughes_0-1782911374651.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/154684iAE84A706FCE6384C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CarterHughes_0-1782911374651.png" alt="CarterHughes_0-1782911374651.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The above has a few expressions that use first since it is the easiest way to grab the result of an Intersects, or other spatial operations, in Arcade expressions on a FeatureSet.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CarterHughes_1-1782911470498.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/154686iD773170655819A4E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CarterHughes_1-1782911470498.png" alt="CarterHughes_1-1782911470498.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I will update my sister case to this thread. Thanks for being responsive. Fortunate there is an equivalent method of grabbing this data using a loop but customers like us at Montgomery Parks will be playing wack-a-mole considering how commonly used the First function is or let editing sit idle until resolved.&lt;/P&gt;&lt;P&gt;CC&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/659479"&gt;@Tiff&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2026 13:28:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711538#M69105</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-07-01T13:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711576#M69110</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/512339"&gt;@timcneil&lt;/a&gt;It&amp;nbsp;&lt;SPAN&gt;appears fixed as of 9:58 AM some situations but not all.&amp;nbsp;It appears this issue is still active in some cases. I will provide documentation of it once it is shared with me. Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CC&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/659479"&gt;@Tiff&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2026 16:41:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711576#M69110</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-07-01T16:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711904#M69140</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/469080"&gt;@CarterHughes&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the update. Make sure to clear your cache in the various apps in case that's an issue.&lt;/P&gt;&lt;P&gt;If you are still seeing issues in some experiences I would definitely reach out to Support with more details so we can try and figure out how to address.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2026 11:46:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711904#M69140</guid>
      <dc:creator>timcneil</dc:creator>
      <dc:date>2026-07-02T11:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711936#M69142</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/512339"&gt;@timcneil&lt;/a&gt;&amp;nbsp;Thanks for following up with this. After clearing cache, the remaining maps/apps experiencing issues appear to be fixed. Much appreciated.&lt;BR /&gt;&lt;BR /&gt;CC&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/659479"&gt;@Tiff&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2026 13:19:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711936#M69142</guid>
      <dc:creator>CarterHughes</dc:creator>
      <dc:date>2026-07-02T13:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade "First" function not working post June 2026 Update</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711943#M69143</link>
      <description>&lt;P&gt;Nice! Happy to help and hear that your issue is resolved.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Taylor&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2026 13:44:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcade-quot-first-quot-function-not-working-post/m-p/1711943#M69143</guid>
      <dc:creator>timcneil</dc:creator>
      <dc:date>2026-07-02T13:44:21Z</dc:date>
    </item>
  </channel>
</rss>

