<?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: Display date field in Popup with MM/YYYY format in WebMap in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174370#M46069</link>
    <description>&lt;P&gt;If you want just name of the month and year ( May 2022 ), that is built in to the popup configuration in the Classic map viewer, and the fields tab in the new map viewer.&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
    <pubDate>Mon, 16 May 2022 21:59:34 GMT</pubDate>
    <dc:creator>RhettZufelt</dc:creator>
    <dc:date>2022-05-16T21:59:34Z</dc:date>
    <item>
      <title>Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174330#M46065</link>
      <description>&lt;P&gt;**bleep** oeveryone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to format&amp;nbsp; a date filed in a Popup&amp;nbsp; window in a WebMap?&lt;/P&gt;&lt;P&gt;I would like to display only month and year&amp;nbsp; (MM/YYYY)&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 19:50:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174330#M46065</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2022-05-16T19:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174353#M46067</link>
      <description>&lt;P&gt;You could use an Arcade Expresison to do that work. Example:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var theDate = Now();
var theMonth = Month(theDate) + 1; //Month() returns a value 0-11 so add 1 to it

return theMonth + '/' + Year(theDate);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 21:03:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174353#M46067</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2022-05-16T21:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174367#M46068</link>
      <description>&lt;P&gt;A simpler way would be to use &lt;A href="https://developers.arcgis.com/arcade/function-reference/text_functions/#text" target="_self"&gt;Text&lt;/A&gt; formatting&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var date = Now();
return Text(date,"MM/YYYY");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 21:51:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174367#M46068</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2022-05-16T21:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174370#M46069</link>
      <description>&lt;P&gt;If you want just name of the month and year ( May 2022 ), that is built in to the popup configuration in the Classic map viewer, and the fields tab in the new map viewer.&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 21:59:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174370#M46069</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2022-05-16T21:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174406#M46070</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;How do I check for null values in arcade?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 00:02:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174406#M46070</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2022-05-17T00:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Display date field in Popup with MM/YYYY format in WebMap</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174552#M46079</link>
      <description>&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/data_functions/#isempty" target="_self"&gt;IsEmpty()&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 14:12:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/display-date-field-in-popup-with-mm-yyyy-format-in/m-p/1174552#M46079</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2022-05-17T14:12:10Z</dc:date>
    </item>
  </channel>
</rss>

