<?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: Date Only in Tables in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641841#M20437</link>
    <description>&lt;P&gt;Are you using ArcGIS Online? Experience builder recently added support for the new field types with the June 2025 update. See the What's new blog article here&amp;nbsp;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/get-started/whats-new.htm" target="_blank" rel="noopener"&gt;https://doc.arcgis.com/en/experience-builder/latest/get-started/whats-new.htm&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Aug 2025 00:04:40 GMT</pubDate>
    <dc:creator>EmilyGeo</dc:creator>
    <dc:date>2025-08-14T00:04:40Z</dc:date>
    <item>
      <title>Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641608#M20427</link>
      <description>&lt;P&gt;When will date only fields be added to tables in experience builder and dashboards? Asking because trying to write an arcade script to replace that functionality is not working for me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 16:42:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641608#M20427</guid>
      <dc:creator>SavannahThomson1</dc:creator>
      <dc:date>2025-08-13T16:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641654#M20430</link>
      <description>&lt;P&gt;I finally got a workflow/arcade script that works for me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if anyone needs to convert a text field that is formatted like mm/dd/yyyy to a date field, you can use this script:&amp;nbsp;&lt;/P&gt;&lt;P&gt;function textToDate(textDate) {&lt;BR /&gt;if (IsEmpty(textDate) || textDate == null) {&lt;BR /&gt;return null&lt;BR /&gt;}&lt;BR /&gt;var parts = Split(textDate, "/")&lt;BR /&gt;return Date(&lt;BR /&gt;Number(parts[2]), // year&lt;BR /&gt;Number(parts[0]) - 1, // month (0-based)&lt;BR /&gt;Number(parts[1]) // day&lt;BR /&gt;)&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;var recordedDate = textToDate($feature.recorded_date)&lt;BR /&gt;var mappedDate = textToDate($feature.mapped_date)&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 18:00:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641654#M20430</guid>
      <dc:creator>SavannahThomson1</dc:creator>
      <dc:date>2025-08-13T18:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641676#M20433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/665564"&gt;@SavannahThomson1&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Date only fields are currently displayed in the tables for both apps.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="EmilyGeo_0-1755110287439.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/138473iA762C9DAA7AAE45D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="EmilyGeo_0-1755110287439.png" alt="EmilyGeo_0-1755110287439.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 15:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641676#M20433</guid>
      <dc:creator>EmilyGeo</dc:creator>
      <dc:date>2025-08-14T15:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641688#M20434</link>
      <description>&lt;P&gt;Hi Emily,&lt;/P&gt;&lt;P&gt;Date Only fields do not show up in tables added to experience builder or dashboards. You can see the first screen shot is from the data tab on the item description and the second screen shot is the table added to experience builder with the date field missing. My workaround was converting those fields to text in excel before publishing so they'll appear in my apps.&amp;nbsp;  &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="table_screenshot.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/138478iF101D07C52F8BA35/image-size/medium?v=v2&amp;amp;px=400" role="button" title="table_screenshot.png" alt="table_screenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="table_in_experiencebuilder.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/138479iB3BD488208A16C72/image-size/medium?v=v2&amp;amp;px=400" role="button" title="table_in_experiencebuilder.png" alt="table_in_experiencebuilder.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 18:52:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641688#M20434</guid>
      <dc:creator>SavannahThomson1</dc:creator>
      <dc:date>2025-08-13T18:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641841#M20437</link>
      <description>&lt;P&gt;Are you using ArcGIS Online? Experience builder recently added support for the new field types with the June 2025 update. See the What's new blog article here&amp;nbsp;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/get-started/whats-new.htm" target="_blank" rel="noopener"&gt;https://doc.arcgis.com/en/experience-builder/latest/get-started/whats-new.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 00:04:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641841#M20437</guid>
      <dc:creator>EmilyGeo</dc:creator>
      <dc:date>2025-08-14T00:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Date Only in Tables</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641943#M20438</link>
      <description>&lt;P&gt;This is in Portal but that is exciting to see it has been added!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 13:02:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/date-only-in-tables/m-p/1641943#M20438</guid>
      <dc:creator>SavannahThomson1</dc:creator>
      <dc:date>2025-08-14T13:02:10Z</dc:date>
    </item>
  </channel>
</rss>

