<?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: Reassign display text in table using advanced formatting (remove underscores) in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383558#M9079</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/160974"&gt;@JenniferAcunto&lt;/a&gt;&amp;nbsp;thank you!!!!&lt;/P&gt;</description>
    <pubDate>Fri, 16 Feb 2024 18:52:16 GMT</pubDate>
    <dc:creator>dwold</dc:creator>
    <dc:date>2024-02-16T18:52:16Z</dc:date>
    <item>
      <title>Reassign display text in table using advanced formatting (remove underscores)</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1382845#M9065</link>
      <description>&lt;P&gt;I would like to change the display text in a table. Currently, my values have underscores. I would like to remove those underscores so it is cleaner on the table. I am new to arcade but I believe I need to assign a variable and change the text values there and then call that variable in the displayText line?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dwold_0-1708010577602.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94889i5FFB6995640B9883/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dwold_0-1708010577602.png" alt="dwold_0-1708010577602.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dwold_1-1708010592114.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94890iEC9301E924C468BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dwold_1-1708010592114.png" alt="dwold_1-1708010592114.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/160974"&gt;@JenniferAcunto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/572162"&gt;@IssyAmis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/73"&gt;@AdrianWelsh&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 15:09:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1382845#M9065</guid>
      <dc:creator>dwold</dc:creator>
      <dc:date>2024-02-16T15:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reassign display text in table using advanced formatting (remove underscores)</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383403#M9074</link>
      <description>&lt;P&gt;I have used the Replace function in Arcade to replace my underscores for spaces (at least in a popup window). I think it should work for a table too. Here is an example:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/knowledge-base/how-to-replace-values-of-a-field-using-an-arcade-expres-000022951" target="_blank"&gt;https://support.esri.com/en-us/knowledge-base/how-to-replace-values-of-a-field-using-an-arcade-expres-000022951&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And this is the developer site for the function itself:&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/function-reference/text_functions/#replace" target="_blank"&gt;https://developers.arcgis.com/arcade/function-reference/text_functions/#replace&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 15:25:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383403#M9074</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2024-02-16T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reassign display text in table using advanced formatting (remove underscores)</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383411#M9076</link>
      <description>&lt;P&gt;Yes. You are on the right track. You will want to use the Replace function to search for _ and replace it with a space.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var prettytext = Replace($datapoint.core_capability, '_', ' ')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below example, my data has commas instead of an underscore, but the basic principle is the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="JenniferAcunto_0-1708097369007.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/95035i4B2E55C11D06CC8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="JenniferAcunto_0-1708097369007.png" alt="JenniferAcunto_0-1708097369007.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 15:30:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383411#M9076</guid>
      <dc:creator>JenniferAcunto</dc:creator>
      <dc:date>2024-02-16T15:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reassign display text in table using advanced formatting (remove underscores)</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383558#M9079</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/160974"&gt;@JenniferAcunto&lt;/a&gt;&amp;nbsp;thank you!!!!&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 18:52:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383558#M9079</guid>
      <dc:creator>dwold</dc:creator>
      <dc:date>2024-02-16T18:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reassign display text in table using advanced formatting (remove underscores)</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383559#M9080</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/73"&gt;@AdrianWelsh&lt;/a&gt;&amp;nbsp;thanks for the tip!!&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 18:52:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/reassign-display-text-in-table-using-advanced/m-p/1383559#M9080</guid>
      <dc:creator>dwold</dc:creator>
      <dc:date>2024-02-16T18:52:37Z</dc:date>
    </item>
  </channel>
</rss>

