<?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 Date symbology in ArcPro in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/date-symbology-in-arcpro/m-p/1096796#M45369</link>
    <description>&lt;P&gt;I am using ArcPro 2.8.2.&amp;nbsp; I am using the unique value symbol option to symbolize by three fields one being a date field.&amp;nbsp; How can I exclude the time portion of the date to lessen the unique values.&amp;nbsp; I only want to use the month, day and year to determine uniqueness.&amp;nbsp; I've tried most of the date formats but they all seem to maintain the hour for the root attribution.&lt;/P&gt;</description>
    <pubDate>Thu, 09 Sep 2021 15:34:53 GMT</pubDate>
    <dc:creator>BobBoutiette</dc:creator>
    <dc:date>2021-09-09T15:34:53Z</dc:date>
    <item>
      <title>Date symbology in ArcPro</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/date-symbology-in-arcpro/m-p/1096796#M45369</link>
      <description>&lt;P&gt;I am using ArcPro 2.8.2.&amp;nbsp; I am using the unique value symbol option to symbolize by three fields one being a date field.&amp;nbsp; How can I exclude the time portion of the date to lessen the unique values.&amp;nbsp; I only want to use the month, day and year to determine uniqueness.&amp;nbsp; I've tried most of the date formats but they all seem to maintain the hour for the root attribution.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 15:34:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/date-symbology-in-arcpro/m-p/1096796#M45369</guid>
      <dc:creator>BobBoutiette</dc:creator>
      <dc:date>2021-09-09T15:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Date symbology in ArcPro</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/date-symbology-in-arcpro/m-p/1096815#M45372</link>
      <description>&lt;P&gt;You can use an expression, rather than the value itself. Behind the scenes, a date field is just storing a timestamp integer; changing the format won't change the underlying value.&lt;/P&gt;&lt;P&gt;Here are a couple different options:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var d = $feature['date-field']

// To keep the output as a Date type. Cuts the time portion off.
return Date(Year(d), Month(d), Day(d))

// To convert to string. Lets you fine-tune how the output is formatted.
return Text(d, 'Y-M-D')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 16:06:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/date-symbology-in-arcpro/m-p/1096815#M45372</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-09-09T16:06:32Z</dc:date>
    </item>
  </channel>
</rss>

