<?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: Can ArcGIS Pro ModelBuilder append today's date to output table filename? in ModelBuilder Questions</title>
    <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1497190#M4001</link>
    <description>&lt;P&gt;This is great! Thank you for this!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing I ran into which is strange... the output is writing "unknown" after the date. Do you know what I might be doing wrong? I copied your exact code.&amp;nbsp;&lt;/P&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="WindsorConnecticut_0-1719332743259.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/107889i14F9C5302BD97272/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WindsorConnecticut_0-1719332743259.png" alt="WindsorConnecticut_0-1719332743259.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jun 2024 16:26:42 GMT</pubDate>
    <dc:creator>WindsorConnecticut</dc:creator>
    <dc:date>2024-06-25T16:26:42Z</dc:date>
    <item>
      <title>Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863528#M347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a simple tool which finds all properties that lay within a polygon feature (select layer by location), and then exports to a filegeodatabase (Feature class to feature class).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering if I can get the output filename to be dynamic, and include today's date in the feature class filename each time it is run?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently it exports LandParcelRateParking, if I run it each week it simply overwrites last weeks table. Can I get it to append to the filename to be something like:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LandParcelRateParking05042019&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LandParcelRateParking09042019&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;etc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The model is as per below screenshot:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="441514" alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/441514_2019-04-09 14_59_35-ArcGIS Pro - 2019 Work - Albury CBD Parking Rate Zones.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am guessing there is something I can do to append the date, but I am missing it....&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2019 05:05:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863528#M347</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2019-04-09T05:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863529#M348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ben!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you can use Calculate Value and some Python code to get what you're looking for. I made the following test model and it appears to have done what you're looking for:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Model showing Calculate Value and Table to Table using Inline Variables" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/441565_FullModel.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Calculate Value, I have the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;gettime()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Code Block:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;def gettime():&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;from datetime import datetime&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;now = datetime.now()&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;forFile = now.strftime("%m%d%Y")&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;return forFile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This uses the Python "DateTime" module that allows you to grab your machine's current time and modify the output structure using various abbreviations (ex. %m for month, %d for day, %Y for four-number year).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then set the output of the Calculate Value to a specific name (Value in this case), and then called upon that value within the output name of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The resulting table was called "AfterTable_04092019".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information, I'd recommend reviewing the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/help/analysis/geoprocessing/modelbuilder/inline-variable-substitution.htm"&gt;Inline variable substitution&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://docs.python.org/3/library/datetime.html"&gt;Basic date and time types&lt;/A&gt;&amp;nbsp;(namely the strftime() section).&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/modelbuilder-toolbox/calculate-value.htm"&gt;Calculate Value&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rachel&lt;/P&gt;&lt;P&gt;Esri Support Services&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2019 14:36:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863529#M348</guid>
      <dc:creator>rachelg_esri</dc:creator>
      <dc:date>2019-04-09T14:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863530#M349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to do something similar,&amp;nbsp; I'm looking to copy a file geodatabase on a quarterly basis and have it saved with the same name and the date on the end of the geodatabase name.&amp;nbsp; 'Table to table' will not work in this workflow and it does not look like copy will either.&amp;nbsp; Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 15:15:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863530#M349</guid>
      <dc:creator>KyleConboy</dc:creator>
      <dc:date>2019-06-13T15:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863531#M350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kyle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you clarify on "'Table to table' will not work in this workflow and it does not look like copy will either". The Copy tool does copy geodatabases, and the above workflow should work with this tool. Are you receiving an error? What's the issue on your end? Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rachel&lt;/P&gt;&lt;P&gt;Esri Support Services&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2019 16:31:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863531#M350</guid>
      <dc:creator>rachelg_esri</dc:creator>
      <dc:date>2019-06-14T16:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863532#M351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachel.&amp;nbsp; It doesn't look like table to table will let me input a file geodatabase and copy doesn't have anywhere to load in Python code.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jun 2019 16:57:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863532#M351</guid>
      <dc:creator>KyleConboy</dc:creator>
      <dc:date>2019-06-14T16:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863533#M352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/table-to-table.htm"&gt;Table To Table&lt;/A&gt;&amp;nbsp;takes a specific table input not a geodatabase input. You can batch copy a bunch of tables with this tool though: &lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/conversion-toolbox/table-to-geodatabase.htm"&gt;Table to Geodatabase&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/copy.htm"&gt;Copy&lt;/A&gt;&amp;nbsp;is accessible in python as arcpy.Copy_management.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2019 16:16:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863533#M352</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2019-06-18T16:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863534#M353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help.&amp;nbsp; &lt;A _jive_internal="true" href="https://community.esri.com/thread/21496"&gt;This thread&lt;/A&gt; provided the needed solution.&amp;nbsp; The inline variable referencing the calculated variable was what i wasn't getting before.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2019 15:14:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863534#M353</guid>
      <dc:creator>KyleConboy</dc:creator>
      <dc:date>2019-06-19T15:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863535#M354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great! Also see: &lt;A href="https://community.esri.com/message/858545"&gt;Formatting date as string from user input date value in ModelBuilder&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2019 22:21:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863535#M354</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2019-06-19T22:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863536#M355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used your code above&amp;nbsp;but my value isn't coming back as a date. It is coming back as just the number 1. Does the Data type need to be set to something specific? I'm doing this in ArcMap and not Pro also. Would this cause the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: Just realized that the value being returned is 1 no matter what the expression is. I can set it to 1+1 and it still returns 1.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2020 17:29:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863536#M355</guid>
      <dc:creator>Tim-Woodfield</dc:creator>
      <dc:date>2020-03-27T17:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863537#M356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you right click Calculate Value what is the message (Value = ?)&lt;/P&gt;&lt;P&gt;I would set the data type to string, and then connect this as a precondition to the tool where you are going to use the string in the output name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2020 01:48:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/863537#M356</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2020-04-01T01:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1071526#M357</link>
      <description>&lt;P&gt;This worked well for me when trying to add the date to the end of a file name after a reconcile log was created.&amp;nbsp; I calculated the date value using your script, renamed the log file using %Value% at the end, and set a precondition of Value having been calculated.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 15:36:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1071526#M357</guid>
      <dc:creator>JasminePrater</dc:creator>
      <dc:date>2021-06-23T15:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1136581#M358</link>
      <description>&lt;P&gt;Hello All&lt;BR /&gt;&lt;BR /&gt;I am trying to create zip file with name and current date.&amp;nbsp;&lt;/P&gt;&lt;P&gt;example: Land_01242022.zip&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created shapefile with current date like this &lt;STRONG&gt;Land_todayDate.shp&lt;/STRONG&gt;.&lt;BR /&gt;But I am having problem to have same format for zip file with all shapefile on it.&lt;/P&gt;&lt;P&gt;I want something like this :&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Land_todaydate.zip&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have this code but this just create zip file with name and not adding date to it.&lt;STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;zipshape(r"Path","Name")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this function requires the two inputs folder (path to the shapefile) and name (shapefilename, for example if your shapefile is foo.shp, the name should be foo (without the extension). it doesn't&amp;nbsp;work with one input.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;code Block:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;import os
import glob
import zipfile
def zipshape(folder, name):
    os.chdir(folder)
    zipname = name + ".zip"
    flist = glob.glob(name + "*")
    with zipfile.ZipFile(zipname, "w") as newzip:
        for ff in flist:
            if ff[-4:] != "lock" and ff != zipname: 
                newzip.write(ff)
    return os.path.join(folder, zipname)&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;Date Type&lt;BR /&gt;File&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ARM_0-1643056214007.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/32147iB2EFBECE64B22C98/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ARM_0-1643056214007.png" alt="ARM_0-1643056214007.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need to run this everyday because&amp;nbsp;I need to add date or maybe just overwrite pervious&amp;nbsp;zip file with new date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 20:31:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1136581#M358</guid>
      <dc:creator>anonymous55</dc:creator>
      <dc:date>2022-01-24T20:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can ArcGIS Pro ModelBuilder append today's date to output table filename?</title>
      <link>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1497190#M4001</link>
      <description>&lt;P&gt;This is great! Thank you for this!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing I ran into which is strange... the output is writing "unknown" after the date. Do you know what I might be doing wrong? I copied your exact code.&amp;nbsp;&lt;/P&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="WindsorConnecticut_0-1719332743259.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/107889i14F9C5302BD97272/image-size/medium?v=v2&amp;amp;px=400" role="button" title="WindsorConnecticut_0-1719332743259.png" alt="WindsorConnecticut_0-1719332743259.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 16:26:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/modelbuilder-questions/can-arcgis-pro-modelbuilder-append-today-s-date-to/m-p/1497190#M4001</guid>
      <dc:creator>WindsorConnecticut</dc:creator>
      <dc:date>2024-06-25T16:26:42Z</dc:date>
    </item>
  </channel>
</rss>

