<?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 related symbology in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207283#M11875</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response - I think the first method seems more suitable.&lt;/P&gt;&lt;P&gt;If I were to use this method would the symbology automatically change by using the date on my computer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jun 2016 08:53:31 GMT</pubDate>
    <dc:creator>JodieParkes1</dc:creator>
    <dc:date>2016-06-22T08:53:31Z</dc:date>
    <item>
      <title>Date related symbology</title>
      <link>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207281#M11873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently trying to get ArcGIS 10.4 to symbolise point features by utilising a date field.&lt;/P&gt;&lt;P&gt;All my features have a 'last reviewed' date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally, I would like ArcGIS to symbolise my features by the following by using today's date on start-up&lt;/P&gt;&lt;P&gt;1. If the 'last reviewed' date is over 1 year ago&lt;/P&gt;&lt;P&gt;2. If the date is within 1 year&lt;/P&gt;&lt;P&gt;3. If the date field is blank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jodie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 15:16:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207281#M11873</guid>
      <dc:creator>JodieParkes1</dc:creator>
      <dc:date>2016-06-21T15:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Date related symbology</title>
      <link>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207282#M11874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there are two method to do that symbology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frist method ( recommended &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;1- Add New field to your attribute table .&lt;/P&gt;&lt;P&gt;2- Select by attribute for records that "date is over 1 year ago" / "within 1 year" / Null&lt;/P&gt;&lt;P&gt;3- Calculate new field with unique value for each selection.&lt;/P&gt;&lt;P&gt;4-Use that field in symbology.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second method:&lt;/P&gt;&lt;P&gt;1- Add your layer in TOC 3 times&lt;/P&gt;&lt;P&gt;2- Make a definition query for each layer with unique group as you want "date is over 1 year ago" / "within 1 year" / Null&lt;/P&gt;&lt;P&gt;(each layer has different expression)&lt;/P&gt;&lt;P&gt;3- Symbolize each layer manual.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 18:45:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207282#M11874</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-06-21T18:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Date related symbology</title>
      <link>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207283#M11875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response - I think the first method seems more suitable.&lt;/P&gt;&lt;P&gt;If I were to use this method would the symbology automatically change by using the date on my computer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 08:53:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207283#M11875</guid>
      <dc:creator>JodieParkes1</dc:creator>
      <dc:date>2016-06-22T08:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Date related symbology</title>
      <link>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207284#M11876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For a dynamic solution I would go with option 2 of Abdullah's suggestion.&amp;nbsp; You can set your layer definition query to take the current date into account:&lt;/P&gt;&lt;P&gt;Over a year:&amp;nbsp; ReviewDate &amp;lt;&amp;nbsp; CURRENT_DATE - 365&lt;/P&gt;&lt;P&gt;Within 1 year:&amp;nbsp; ReviewDate &amp;gt;=&amp;nbsp; CURRENT_DATE - 365&lt;/P&gt;&lt;P&gt;Null:&amp;nbsp; ReviewDate IS Null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 10:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/date-related-symbology/m-p/207284#M11876</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-06-22T10:58:23Z</dc:date>
    </item>
  </channel>
</rss>

