<?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>idea Arcade: Allow Date() values in date fields (esriFieldTypeDate) in ArcGIS Online Ideas</title>
    <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idi-p/1204894</link>
    <description>&lt;P&gt;In things like Dashboards or Popups, it is common to create your own FeatureSet in the Arcade code. These FeatureSets often have date columns, these are defined with the field type "esriFieldTypeDate".&lt;/P&gt;&lt;P&gt;If you input a feature with a Date() attribute, the FeatureSet will be empty:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs_dict = {
    fields: [
        {name: 'DateField', type: 'esriFieldTypeDate'}
        ],
    features: [
        {attributes: {DateField: Now()}}
        ],
    geometryType: ''
}
return FeatureSet(Text(fs_dict))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1661149916211.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/49103iAE73B4F46415B7A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_0-1661149916211.png" alt="JohannesLindner_0-1661149916211.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To insert a date, you have to convert to Number() first (line 6):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs_dict = {
    fields: [
        {name: 'DateField', type: 'esriFieldTypeDate'}
        ],
    features: [
        {attributes: {DateField: Number(Now())}}
        ],
    geometryType: ''
}
return FeatureSet(Text(fs_dict))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1661149987926.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/49104i3A5221B44C0708F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1661149987926.png" alt="JohannesLindner_1-1661149987926.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is absolutely not a behavior users expect and it leads to confusion regularly.&lt;/P&gt;&lt;P&gt;Please change the FeatureSet creation to allow Date() values in esriFieldTypeDate fields.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2022 06:35:48 GMT</pubDate>
    <dc:creator>JohannesLindner</dc:creator>
    <dc:date>2022-08-22T06:35:48Z</dc:date>
    <item>
      <title>Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idi-p/1204894</link>
      <description>&lt;P&gt;In things like Dashboards or Popups, it is common to create your own FeatureSet in the Arcade code. These FeatureSets often have date columns, these are defined with the field type "esriFieldTypeDate".&lt;/P&gt;&lt;P&gt;If you input a feature with a Date() attribute, the FeatureSet will be empty:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs_dict = {
    fields: [
        {name: 'DateField', type: 'esriFieldTypeDate'}
        ],
    features: [
        {attributes: {DateField: Now()}}
        ],
    geometryType: ''
}
return FeatureSet(Text(fs_dict))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_0-1661149916211.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/49103iAE73B4F46415B7A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_0-1661149916211.png" alt="JohannesLindner_0-1661149916211.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To insert a date, you have to convert to Number() first (line 6):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs_dict = {
    fields: [
        {name: 'DateField', type: 'esriFieldTypeDate'}
        ],
    features: [
        {attributes: {DateField: Number(Now())}}
        ],
    geometryType: ''
}
return FeatureSet(Text(fs_dict))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohannesLindner_1-1661149987926.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/49104i3A5221B44C0708F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JohannesLindner_1-1661149987926.png" alt="JohannesLindner_1-1661149987926.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is absolutely not a behavior users expect and it leads to confusion regularly.&lt;/P&gt;&lt;P&gt;Please change the FeatureSet creation to allow Date() values in esriFieldTypeDate fields.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 06:35:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idi-p/1204894</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2022-08-22T06:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1221153#M9400</link>
      <description>&lt;P&gt;This had me stumped for ages, trying a range of things before I came across your post! Definitely not expected behaviour and is wasting time by not being common knowledge when using data expressions.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 15:54:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1221153#M9400</guid>
      <dc:creator>abrown8</dc:creator>
      <dc:date>2022-10-12T15:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1234833#M9530</link>
      <description>&lt;P&gt;Oh how i wish i had found this post earlier! Thanks so much for directing me here Johannes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 08:06:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1234833#M9530</guid>
      <dc:creator>Scott_Sambell</dc:creator>
      <dc:date>2022-11-24T08:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1235575#M9551</link>
      <description>&lt;P&gt;Do you need to declare the number for a date if used in the script, but is not included in dictionary? I've included my script below, it returns empty.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var portal = Portal("https://arcgis.com");
var fs = FeatureSetByPortalItem(
  portal,
  "MY_ITEM_NUM_HERE",
  0,
  [
    "date",
    "name",
    "sum_numberoftrainees",
    "sum_numberofqualified",
  ],
  false
);



var currentDate = Date(Max(fs, 'date'));
var monthAgo = Text(DateAdd(currentDate, -1, "month"), "YYYY-MM-DD");
currentDate = Text(currentDate, "YYYY-MM-DD");



var current = Filter(fs, "date = @currentDate");
var lastMonth = Filter(fs, "date = @monthAgo");



var dict = {
  fields: [
        {name: "name", type: "esriFieldTypeString"},
        {name: "current_trainee", type: "esriFieldTypeDouble"},
        {name: "month_ago_trainee", type: "esriFieldTypeDouble"},
        {name: "current_qualified", type: "esriFieldTypeDouble"},
        {name: "month_ago_qualified", type: "esriFieldTypeDouble"},
  ],
  geometryType: "",
  features: [],
};



for (var c in current) {
  for (var l in lastMonth) {
    dict.features[0] = {
      attributes: {
        name: c["name"],
        current_trainee: c["sum_numberoftrainees"],
        month_ago_trainee: l["sum_numberoftrainees"],
        current_qualified: c["sum_numberofqualified"],
        month_ago_qualified: l["sum_numberofqualified"],
      },
    };
  }
}
return FeatureSet(Text(dict));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/277034"&gt;@DavidNyenhuis1&lt;/a&gt;&amp;nbsp; - any assitance or direction on this is so greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 19:36:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1235575#M9551</guid>
      <dc:creator>BritaAustin</dc:creator>
      <dc:date>2022-11-28T19:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1236577#M9567</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/640017"&gt;@BritaAustin&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Number(myDate) essentially converts it to an EPOCH value. This is only necessary for in the dictionary for constructing the Feature Set. (Checking to see there are any options or plans to change this requirement, as it does trip a lot of people up).&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your scenario, I don't think this is the problem -- you aren't creating any date fields in your new feature set. It looks like your looping logic might need some work starting at line 44 (you aren't incrementing the feature index).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 20:45:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1236577#M9567</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2022-11-30T20:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1263411#M9843</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/277034"&gt;@DavidNyenhuis1&lt;/a&gt;&amp;nbsp;,&amp;nbsp;@Anonymous User&amp;nbsp;Any news on this isssue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just answered another question about this and got curious.&amp;nbsp;Here are some questions I found in a very cursory search where converting the Date() to Number() was the solution, I probably missed a few.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-online-developers-questions/arcade-script-to-split-multi-pick-field-values/m-p/1263370" target="_blank"&gt;Arcade script to split multi pick field values - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1211959" target="_blank"&gt;ArcGIS Dashboard Using Arcade to union two dataset... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/help-getting-a-data-expression-to-work/m-p/1241571" target="_blank"&gt;Solved: Help getting a data expression to work. - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/arcade-expression-no-values-returned-by-featureset/m-p/1204869" target="_blank"&gt;Solved: Arcade Expression: No values returned by FeatureSe... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/developers-questions/arcade-dictionary-to-featureset/m-p/1047117" target="_blank"&gt;Solved: Arcade dictionary to FeatureSet - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/how-to-maintain-date-data-in-arcade-expressions/m-p/1125749" target="_blank"&gt;Solved: How to maintain date data in arcade expressions - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-online-questions/arcade-featuresets-and-date-fields-what-s-going-on/m-p/1147785" target="_blank"&gt;Arcade FeatureSets and Date Fields: What's Going O... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/esrifieldtypedate-in-data-expression-in-dashboard/m-p/1234778" target="_blank"&gt;Solved: esriFieldTypeDate in Data Expression in Dashboard ... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/arcade-data-expressions-with-date-column-not/m-p/1260473" target="_blank"&gt;Solved: Arcade Data Expressions with Date Column Not Worki... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/date-fields-in-data-expressions-for-serial-charts/m-p/1135728" target="_blank"&gt;Solved: Date fields in data expressions for serial charts - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/feature-not-being-created-due-to-date-field-type/m-p/1202271" target="_blank"&gt;Solved: Feature not being created due to date field type - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/arcade-data-expression-dictionary-from-multiple/td-p/1128645" target="_blank"&gt;Solved: Arcade Data Expression- Dictionary from multiple t... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/pass-values-to-new-columns-arcade/m-p/1110754" target="_blank"&gt;Solved: Pass values to new columns Arcade - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-questions/arcade-how-to-use-a-date-field-with-a-dictionary/m-p/1238570" target="_blank"&gt;Solved: Re: Arcade - How to use a date field with a dictio... - Esri Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are probably many users who have the same problem but didn't ask a question (I know I was). They either got the solution from an already solved question (good: they got a solution, bad: they had this easily avoidable problem in the first place) or they couldn't solve this problem and moved on (obviously bad).&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 07:14:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1263411#M9843</guid>
      <dc:creator>JohannesLindner</dc:creator>
      <dc:date>2023-03-02T07:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1265782#M9860</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/294341"&gt;@JohannesLindner&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for digging all these up and helping users with many of them. I have brought it to the attention of the Arcade team and they will discuss it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It sounds like there are some complexities around the feature layer specification (requiring EPOCH) and time zones (e.g., an Arcade date is in local time), but that is not to say a solution cannot be had. I'll keep you posted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the time being, I thought I'd share a little helper function to convert dates in a feature to EPOCH. I will have to check if it is accounting for time zone correctly though.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// Since a esriTypeDate can't take an Arcade Date, need to cast to EPOCH
// Pass in a feature
function CastDatesToEpoch(feat) {
    var modifiedAttributes = {};
    for (var att in feat) {
        if(TypeOf(feat[att]) == 'Date') {
            modifiedAttributes[att] = Number(feat[att])
            // Console(`${feat[att]} is now ${Number(feat[att])}`)
        }
        else {
            modifiedAttributes[att] = feat[att]
        }
    }
    return modifiedAttributes
}

var fs = FeatureSetByPortalItem(Portal('https://www.arcgis.com'), item, sublayer, ["*"], fetchGeom);
// Define a new dictionary feature set
var sch = Schema(fs);
var dict = {
  'fields': sch.fields,
  'geometryType': sch.geometryType, // Can be esriGeometryNull, esriGeometryPoint, esriGeometryPolyline, esriGeometryPolygon;
  'features': []
};
// Do something to each feature, like add a field, then add it to the dictionary
var index = 0;
for (var f in fs) {
    // Add each feature to new dictionary and cast dates to EPOCH
    dict.features[index] = {
        'geometry': Geometry(f),
        'attributes': CastDatesToEpoch(f)
    }
    index++;
}
// Convert dictionary to feature set.
return FeatureSet(Text(dict));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 22:12:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1265782#M9860</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2023-03-08T22:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1269827#M9887</link>
      <description>&lt;P&gt;This saved me, thank you!!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 14:00:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1269827#M9887</guid>
      <dc:creator>jzibbell_boise</dc:creator>
      <dc:date>2023-03-21T14:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1299909#M10198</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/655216"&gt;@jzibbell_boise&lt;/a&gt;,&amp;nbsp;with this week's update to Arcade and ArcGIS Dashboards, this issue is fixed. Dates in feature sets now just work. You no longer have to wrap dates with &lt;STRONG&gt;Number()&lt;/STRONG&gt; if you pass the dictionary into the &lt;STRONG&gt;FeatureSet()&lt;/STRONG&gt; function (which as of this release accepts a dictionary as opposed to only text based JSON).&lt;/P&gt;&lt;P&gt;Instead of:&lt;/P&gt;&lt;PRE&gt;return FeatureSet(Text(dict))&lt;/PRE&gt;&lt;P&gt;Do this:&lt;/P&gt;&lt;PRE&gt;return FeatureSet(dict)&lt;/PRE&gt;&lt;P&gt;Learn more on &lt;A href="https://community.esri.com/t5/arcgis-dashboards-blog/dashboard-data-expressions-what-has-changed-june/ba-p/1298782" target="_blank" rel="noopener"&gt;this blog post&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;NOTE: For Enterprise users, this update is targeted for 11.2&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 18:57:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1299909#M10198</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2023-06-15T18:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade: Allow Date() values in date fields (esriFieldTypeDate)</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1314188#M10338</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/277034"&gt;@DavidNyenhuis1&lt;/a&gt;&amp;nbsp;thanks! Our Portal where I'm building the dashboards is behind versions, but in the future this will be helpful!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 17:45:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/arcade-allow-date-values-in-date-fields/idc-p/1314188#M10338</guid>
      <dc:creator>jzibbell_boise</dc:creator>
      <dc:date>2023-08-01T17:45:16Z</dc:date>
    </item>
  </channel>
</rss>

