<?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: How do i use yesterdays date as a variable? in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444323#M13703</link>
    <description>&lt;P&gt;Where is the table COMPANY.TABLE stored? Is it in another database outside of SAS or in a SAS data library? We can't give provide an answer without knowing this.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Mar 2018 00:49:43 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2018-03-10T00:49:43Z</dc:date>
    <item>
      <title>How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444293#M13701</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have little to no experience using SAS tool, but need to modify some prewritten code to utilise my employers automation capabilities with the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each morning I am required to produce a sample file and I am hoping to automate this process. There are two variables declared at the start of the SAS code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MinTxnDate='05MAR2018';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MaxExclusiveTxnDate='06MAR2018';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Further down the code proc sql is used to set filter: &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;select&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; * &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;from&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;COMPANY.TABLE with (nolock)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;where&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;gt;= &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;MinTxnDate.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;and&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;lt; &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;MaxExclusiveTxnDate.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;-- As things stand, I have to modify the dates each morning. The MinTxnDate should be yesterday, and Max today. Given that I want to automate this code, how would I set the MinTxnDate and Maxdate to the dates required?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;Played around with eval sysdates but not having much luck, but as I say I have never used SAS before this.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 22:31:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444293#M13701</guid>
      <dc:creator>woodie2905</dc:creator>
      <dc:date>2018-03-09T22:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444300#M13702</link>
      <description>&lt;P&gt;That code wouldn't work as posted, the dates wouldn't be interpreted correctly, they're being used as character values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's how you could automate it to replicate what you have, assuming you missed something in the post and your code does actually work as expected. Note that I'm not saying it won't work, just not give you what you expect because it's treating the dates as characters not dates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the TODAY() function to return the date and then date9. to format the date.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let MaxExclusiveTxnDate=%sysfunc(today(), date9.);
%let MinTxnDate=%sysfunc(putn(%sysevalf(%sysfunc(today()) - 1), date9.));


%put &amp;amp;MinTxnDate.;
%put &amp;amp;MaxExclusiveTxnDate;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/198195"&gt;@woodie2905&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have little to no experience using SAS tool, but need to modify some prewritten code to utilise my employers automation capabilities with the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each morning I am required to produce a sample file and I am hoping to automate this process. There are two variables declared at the start of the SAS code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;rsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MinTxnDate='05MAR2018';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MaxExclusiveTxnDate='06MAR2018';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Further down the code proc sql is used to set filter: &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;select&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; * &lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;from&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;COMPANY.TABLE with (nolock)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;where&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;gt;= &amp;amp;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;MinTxnDate.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#0000ff"&gt;and&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;lt; &amp;amp;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;MaxExclusiveTxnDate.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;-- As things stand, I have to modify the dates each morning. The MinTxnDate should be yesterday, and Max today. Given that I want to automate this code, how would I set the MinTxnDate and Maxdate to the dates required?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2" color="#008080"&gt;Played around with eval sysdates but not having much luck, but as I say I have never used SAS before this.&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 23:03:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444300#M13702</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-09T23:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444323#M13703</link>
      <description>&lt;P&gt;Where is the table COMPANY.TABLE stored? Is it in another database outside of SAS or in a SAS data library? We can't give provide an answer without knowing this.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 00:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444323#M13703</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-03-10T00:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444336#M13704</link>
      <description>&lt;P&gt;Below code will create and populate the two macro variables exactly as posted in your code.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  call symput('MinTxnDate',"'"||put(today()-1,date9.)||"'");
  call symput('MaxExclusiveTxnDate',"'"||put(today(),date9.)||"'");
  stop;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Mar 2018 02:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444336#M13704</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-10T02:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444591#M13718</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the top to where the min/max date is referenced, the code looks like this. There's every chance that the date fields are text in the original table, unless you can spot something to suggest otherwise - as I said I'm just trying to interpret someone elses code and tables so can't be sure. Once I am back on LAN tomorrow I will test your suggestion, but if you see anything else in what I've provided below please let me know?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MinTxnDate='03MAR2018'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; MaxExclusiveTxnDate='04MAR2018'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endrsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; &lt;STRONG&gt;&lt;I&gt;passthru_ACID&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;connect to odbc as ACID(datasrc=ACID);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; &lt;STRONG&gt;&lt;I&gt;passthru_fcd&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;connect to odbc as FCD(datasrc=FCD DBMAX_TEXT=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;32767&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; &lt;STRONG&gt;&lt;I&gt;templib_fcd&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;LIBNAME FCDTMP ODBC CONNECTION=SHARED READBUFF=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;500&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; CURSOR_TYPE=FORWARD_ONLY&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;DBCONINIT=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"set DATEFORMAT ymd"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; DATAsrc=FCD DBMAX_TEXT=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;32767&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; SCHEMA=dbo;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endrsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rsubmit&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sql&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;noprint&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%&lt;STRONG&gt;&lt;I&gt;passthru_ACID&lt;/I&gt;&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;create&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;table&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; ATMTxns &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;as&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;select&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; * &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;from&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; connection to ACID (&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;select&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; * &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;from&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Reporting.ATMTransactions with (nolock)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;where&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;gt;= &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;MinTxnDate.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;and&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; transactiondate &amp;lt; &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;MaxExclusiveTxnDate.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2018 20:54:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/444591#M13718</guid>
      <dc:creator>woodie2905</dc:creator>
      <dc:date>2018-03-11T20:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do i use yesterdays date as a variable?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/445188#M13745</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/198195"&gt;@woodie2905&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the top to where the min/max date is referenced, the code looks like this. There's every chance that the date fields are text in the original table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Given that it's pass through SQL it could be correct, but I would be checking the logic. Note that it may not give you any syntax error, but the logic would be flawed, since it would be an alphabetical comparison, not numeric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Mar 2018 14:46:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-do-i-use-yesterdays-date-as-a-variable/m-p/445188#M13745</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-03-13T14:46:40Z</dc:date>
    </item>
  </channel>
</rss>

