<?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 widget formatting: why the very limited number of expressions? in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1632294#M19890</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/606665"&gt;@NicoleJohnson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;1 – When the page loads, all Arcade expressions on that page are evaluated at once, which can use a lot of resources. This limitation is in place to help maintain performance and avoid potential bugs.&lt;/P&gt;&lt;P&gt;2 – It’s a bit tricky to remove this limitation, a workaround is to use &lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/advanced-formatting.htm#ESRI_SECTION2_8DFB317CC93A40058270A73F08137DC7" target="_self"&gt;HTML format&lt;/A&gt; and keep just one Arcade expression per text widget. That should help reduce the overall number.&lt;/P&gt;&lt;P&gt;3 – That last one is a bug and will be fixed in the next release.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shengdi&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jul 2025 03:05:17 GMT</pubDate>
    <dc:creator>ShengdiZhang</dc:creator>
    <dc:date>2025-07-11T03:05:17Z</dc:date>
    <item>
      <title>Arcade widget formatting: why the very limited number of expressions?</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1631970#M19872</link>
      <description>&lt;OL&gt;&lt;LI&gt;Can anyone from Esri say if there are plans to allow for more than 10 expressions eventually?&lt;/LI&gt;&lt;LI&gt;Is there any other way to achieve what I'm trying to do?&lt;/LI&gt;&lt;LI&gt;Finally, a note on the UI.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&amp;nbsp;The &lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/advanced-formatting.htm" target="_self"&gt;documentation for advanced formatting in Experience Builder&lt;/A&gt; states:&lt;/STRONG&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Each app page supports a maximum of 10 Arcade expressions using the widget formatting profile, including both dynamic content and dynamic style set by Arcade script.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. I'm not actually doing anything terribly fancy--here's my use case:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I'm trying to build an application in Experience Builder that provides much of the same functionality as an existing application (that wasn't built with any Esri products). Essentially, the user can explore various datasets through maps, charts, and tables. Throughout, the filtering experience is such that the values the user chooses are presented in the filters themselves, so the user can remember what they chose out of the sometimes many, many options:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NicoleJohnson_3-1752151340742.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/136275iF67EE178875D454A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NicoleJohnson_3-1752151340742.png" alt="NicoleJohnson_3-1752151340742.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This isn't possible with the filter widget in Experience Builder. Instead, the user sees the number of values they chose from the list:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NicoleJohnson_2-1752151284568.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/136274i62432CE332C479E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NicoleJohnson_2-1752151284568.png" alt="NicoleJohnson_2-1752151284568.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have a lot of charts in this experience, and for some of them (because they're so flexible in terms of the filtering options), it might be hard for a user to remember the context of what they're looking at.&lt;/P&gt;&lt;P&gt;For example, here's a chart that displays the sum of tests by year, categorized by county. The user can filter this chart by county, year, species, and/or test result. The first two variables are already covered in the chart itself, but the species and test result values are not. With the new Arcade capabilities in Experience Builder, I can just print out the species and test result values (filtered by the user) that are contributing to the chart:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NicoleJohnson_4-1752152106313.png" style="width: 649px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/136280i833C1185B6F6D232/image-dimensions/649x508?v=v2" width="649" height="508" role="button" title="NicoleJohnson_4-1752152106313.png" alt="NicoleJohnson_4-1752152106313.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, I'm finding myself already hitting the limit in terms of number of expressions that use $dataSources per page.&lt;/P&gt;&lt;P&gt;I know there &lt;EM&gt;are&lt;/EM&gt; other things I can do, like:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Creating a table with the unique values and having my filters filter that table, but this (the Arcade widget formatting) is so much more concise, plus I don't have to maintain some other dataset. I will also eventually be working with some ~200 datasets, so maintaining unique values tables for all of them seems daunting and just a waste of time and resources, even if I scripted it.&lt;/LI&gt;&lt;LI&gt;Setting the filters up one by one such that "Bat" and "Cat" are buttons the user can click, so they always see whether that value is contributing to the charts. I'm listing this as an option, but it really isn't. I have dozens of species, so from a UI perspective that just doesn't make sense to do.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This isn't critical. Either we can trust the user to refer back to what they filtered, or we put some kind of reminder, BUT it would make the user experience much better to just be able to see what's contributing to the data you're seeing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Once you add 10 expressions, it becomes impossible to edit your existing expressions without first sending one of them to the pending list.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This is kind of annoying. I could see myself being in the middle of doing this, then getting a message from someone, and totally forgetting to bring the 10th expression back from the pending list.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 13:39:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1631970#M19872</guid>
      <dc:creator>NicoleJohnson</dc:creator>
      <dc:date>2025-07-10T13:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade widget formatting: why the very limited number of expressions?</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1632294#M19890</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/606665"&gt;@NicoleJohnson&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;1 – When the page loads, all Arcade expressions on that page are evaluated at once, which can use a lot of resources. This limitation is in place to help maintain performance and avoid potential bugs.&lt;/P&gt;&lt;P&gt;2 – It’s a bit tricky to remove this limitation, a workaround is to use &lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/advanced-formatting.htm#ESRI_SECTION2_8DFB317CC93A40058270A73F08137DC7" target="_self"&gt;HTML format&lt;/A&gt; and keep just one Arcade expression per text widget. That should help reduce the overall number.&lt;/P&gt;&lt;P&gt;3 – That last one is a bug and will be fixed in the next release.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shengdi&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 03:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1632294#M19890</guid>
      <dc:creator>ShengdiZhang</dc:creator>
      <dc:date>2025-07-11T03:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade widget formatting: why the very limited number of expressions?</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1632359#M19896</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;I'm already using one expression per text widget (i.e., the species and test result values are coming from one expression, with HTML formatting). I just have like 11 or 12 charts on this page, so either have to decide if I want to scrap them entirely or only do some of them...&lt;/P&gt;&lt;P&gt;Regardless, Arcade in ExB is fantastic and I'm looking forward to using it elsewhere.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 11:41:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcade-widget-formatting-why-the-very-limited/m-p/1632359#M19896</guid>
      <dc:creator>NicoleJohnson</dc:creator>
      <dc:date>2025-07-11T11:41:36Z</dc:date>
    </item>
  </channel>
</rss>

