<?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: Hide Time value in Layout? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719682#M31650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Tom! That is helpful to know, even if the answer is it is not possible for the Table Frame (so at least we stop trying). With the field, I tried this expression and it works, except for it returns the month one number off. I found this &lt;A _jive_internal="true" href="https://community.esri.com/thread/253262-date-off-by-a-month-using-arcade"&gt;GeoNet post&lt;/A&gt; which explains it is to be expected. I ended up using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var month_fix = Month($feature.date_field) + 1&lt;BR /&gt;return month_fix + "/" + Day($feature.date_field) + "/" + Year($feature.date_field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Sep 2020 15:17:45 GMT</pubDate>
    <dc:creator>BrittanyBurson</dc:creator>
    <dc:date>2020-09-01T15:17:45Z</dc:date>
    <item>
      <title>Hide Time value in Layout?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719680#M31648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I have a Table Frame which is showing some related records. One of the fields I need to show is date of submission, but I cannot seem to hide the Time values (Date field) in my Table Frame in my Layout view. I've disabled Time in the "Configure Attributes" setting at both the Hosted Layer and Web Map levels, but these settings don't seem to persist through when I bring the Web Map into Pro. I see the same thing using either the Table Frame or a single field as Dynamic Text, and I haven't had any luck adjusting this through the &lt;A href="https://pro.arcgis.com/en/pro-app/help/layouts/add-and-modify-dynamic-text.htm"&gt;dynamic text&lt;/A&gt; options yet.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/504955_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It wouldn't be the end of the world if they weren't showing in UTC time, so if I could fix that then that would help as well...&lt;/P&gt;&lt;P&gt;This is Portal 10.6 with ArcGIS Pro 2.6, so maybe I am limited by that? Thank you for any suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2020 20:47:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719680#M31648</guid>
      <dc:creator>BrittanyBurson</dc:creator>
      <dc:date>2020-08-31T20:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Time value in Layout?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719681#M31649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brittany,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like you'll need to format the Date field. There is no way that I'm aware of that you can do this in a Table Frame. I believe you would need to format the field itself, or create a new field with the date formatting you desire in order for this to work with a Table Frame.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For dynamic text you can use the following Arcade expression to display just the date portion of the Date field value -&amp;nbsp;&lt;/P&gt;&lt;P&gt;Month($&amp;lt;&lt;EM&gt;Date_fieldname&lt;/EM&gt;&amp;gt;) + "/" + Day($&lt;EM&gt;Date_fieldname&lt;/EM&gt;) + "/" + Year($&lt;EM&gt;Date_fieldname&lt;/EM&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/505144_pastedImage_32.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2020 13:00:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719681#M31649</guid>
      <dc:creator>TomBole</dc:creator>
      <dc:date>2020-09-01T13:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Time value in Layout?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719682#M31650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Tom! That is helpful to know, even if the answer is it is not possible for the Table Frame (so at least we stop trying). With the field, I tried this expression and it works, except for it returns the month one number off. I found this &lt;A _jive_internal="true" href="https://community.esri.com/thread/253262-date-off-by-a-month-using-arcade"&gt;GeoNet post&lt;/A&gt; which explains it is to be expected. I ended up using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var month_fix = Month($feature.date_field) + 1&lt;BR /&gt;return month_fix + "/" + Day($feature.date_field) + "/" + Year($feature.date_field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2020 15:17:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/hide-time-value-in-layout/m-p/719682#M31650</guid>
      <dc:creator>BrittanyBurson</dc:creator>
      <dc:date>2020-09-01T15:17:45Z</dc:date>
    </item>
  </channel>
</rss>

