<?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 to create a dynamic date range in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367455#M87472</link>
    <description>&lt;P&gt;Sorry I meant to mention that yes this is a pass-thru to an oracle database&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jun 2017 17:36:12 GMT</pubDate>
    <dc:creator>lbridges225</dc:creator>
    <dc:date>2017-06-15T17:36:12Z</dc:date>
    <item>
      <title>How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367141#M87372</link>
      <description>&lt;P&gt;I need to run a query each month that uses October 1, 2016&amp;nbsp;up to the most recent month end date. &amp;nbsp;So in this case I ran the query for 10/1/2016 - 5/31/2017. &amp;nbsp;Next run will be 10/1/2016 to 6/30/2017. &amp;nbsp;I'm trying to code this in SAS and this is as far as I've gotten..and I'm 100% new so...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let mnth = 5;&lt;BR /&gt;%let yr = 2016;&lt;BR /&gt;%let fy= %substr(&amp;amp;year,3,2)%sysfunc(putn(%eval(%substr(&amp;amp;year,3,2)+1), z2.));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal is to no longer have to modify the dates below manually.&lt;/P&gt;&lt;P&gt;WHERE PER.DAY_DATE BETWEEN to_date('10/01/2016','mm/dd/yyyy') and to_date('05/31/2017','mm/dd/yyyy')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 21:03:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367141#M87372</guid>
      <dc:creator>lbridges225</dc:creator>
      <dc:date>2017-06-14T21:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367152#M87375</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/92505"&gt;@lbridges225&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Something like below should work&lt;/P&gt;
&lt;PRE&gt;%let startMonth='10/01/2016';
%let endMonth=%unquote(%nrbquote(')%sysfunc(intnx(month,%sysfunc(today()),0,e),mmddyy10.)%nrbquote('));



WHERE PER.DAY_DATE BETWEEN to_date(&amp;amp;startMonth,'mm/dd/yyyy') and to_date(&amp;amp;endMonth,'mm/dd/yyyy')&lt;/PRE&gt;
&lt;P&gt;Using a data step to create and populate the macro variable would make things a bit easier to read and maintain:&lt;/P&gt;
&lt;PRE&gt;data _null_;
  startMonth=intnx('month',today(),0,'e');
  call symputx('startMonth',cats("'",put(startMonth,mmddyy10.),"'"),'G');
run;&lt;/PRE&gt;
&lt;P&gt;And last but not least: As your code looks like Oracle SQL you could also use an Oracle function to achieve what you're after&lt;/P&gt;
&lt;PRE&gt;WHERE PER.DAY_DATE BETWEEN to_date('10/01/2016','mm/dd/yyyy') and LAST_DAY(SYSDATE)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 21:57:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367152#M87375</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-06-14T21:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367186#M87382</link>
      <description>&lt;P&gt;&amp;gt; October 1, 2016&amp;nbsp;up to the most recent month end date&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume this runs on SAS data. Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data SAMPLE;
  format DAY_DATE date9.;
  do DAY_DATE ='06MAY2016'd to '06MAY2018'd by 30;
   output;
 end;
run;

proc sql;
  select * 
  from SAMPLE 
  where DAY_DATE between '01OCT2016'd and intnx('month',today(),-1,'e');
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;TABLE class="table" rules="all" frame="box" cellspacing="0" cellpadding="5" summary="Procedure SQL: Query Results"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;DAY_DATE&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;03OCT2016&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;02NOV2016&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;02DEC2016&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;01JAN2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;31JAN2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;02MAR2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;01APR2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;01MAY2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="r data"&gt;31MAY2017&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Wed, 14 Jun 2017 23:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367186#M87382</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-14T23:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367196#M87385</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The to_date() function in the where clause the OP posted indicates pass-through SQL&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 00:53:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367196#M87385</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-06-15T00:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367204#M87389</link>
      <description>&lt;P&gt;Possibly. I tooks it as: Oracle is the only syntax I know&amp;nbsp;and I want to know&amp;nbsp;the SAS syntax, since no database is mentionned.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 01:44:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367204#M87389</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-15T01:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367455#M87472</link>
      <description>&lt;P&gt;Sorry I meant to mention that yes this is a pass-thru to an oracle database&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367455#M87472</guid>
      <dc:creator>lbridges225</dc:creator>
      <dc:date>2017-06-15T17:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367470#M87483</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp; The %let statements worked!!&amp;nbsp; Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I do the same thing for this statement, sp that it pulls the next series of dates without manual manipulation?&amp;nbsp; So as an example, I would need to run this in July for 5/28 - 6/30, and again in August...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WHERE PER.DAY_DATE BETWEEN to_date('04/30/2017','mm/dd/yyyy') and to_date('05/27/2017','mm/dd/yyyy')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 18:24:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367470#M87483</guid>
      <dc:creator>lbridges225</dc:creator>
      <dc:date>2017-06-15T18:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367473#M87484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/92505"&gt;@lbridges225&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will be easy if you you Implicit SQL-Passthrough rather than Explicit way.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Last day for the previous month --&amp;gt; INTNX('MONTH',TODAY(),-1,'e')&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 18:37:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367473#M87484</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2017-06-15T18:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367527#M87512</link>
      <description>&lt;P&gt;If you dont want implicit pass-thru, you can do this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 
%let enddate=%sysfunc(intnx(month,%sysfunc(today()),-1,e),date9.);

...

where DAY_DATE between '01OCT2016'd and %str(%')&amp;amp;enddate%str(%')
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a third alternative, there's probaly oracle functions that can do the same thing.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 22:04:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/367527#M87512</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-15T22:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/375121#M89903</link>
      <description>&lt;P&gt;So for my project I had a fiscal calendar.csv uploaded into SAS since our fiscal months here are different from others - which is weird I know.&lt;/P&gt;&lt;P&gt;I think I need to write some data steps to reference this csv and pull the fiscal month start and end dates dynamically.&amp;nbsp; So far I have a proc sql statement and a data statement....not sure how to proceed...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;INFILE&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"//sas_env/xxxcl/scm/Fxqhek/fiscal_calendar_month_start_end.csv"&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;DELIMITER&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; = &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;','&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;MISSOVER&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;DSD&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;LRECL&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;32767&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;FIRSTOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;INFORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR_DATE &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;INFORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; MONTH_START &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;INFORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; MONTH_END &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;FORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR_DATE &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;FORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; MONTH_START &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;FORMAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; MONTH_END &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;MMDDYY10.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;INPUT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR_DATE MONTH_START MONTH_END ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;IF&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR_DATE = TODAY();&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Is this Proc sql statement the way to go?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;SQL&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;OUTOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;CREATE&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;TABLE&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; QUERY_DATES_2017 &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;AS&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;SELECT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; * &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;FROM&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;WHERE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;FISCAL_MONTH = &amp;amp;FISCAL_MONTH &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;AND&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;FISCAL_YEAR = &amp;amp;FISCAL_YEAR_2017;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;QUIT&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;or should I be using this data null statement&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;_NULL_&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;SET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; CALENDAR_TODAY;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;CALL&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; SYMPUT (&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"FISCAL_MONTH"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;, FISCAL_MONTH_2017);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Thanks.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 20:29:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/375121#M89903</guid>
      <dc:creator>lbridges225</dc:creator>
      <dc:date>2017-07-11T20:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a dynamic date range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/375132#M89905</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What are you trying to achive? There is no clarity in the question. If this question is not related to the earlier one please open a new thread.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 21:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-a-dynamic-date-range/m-p/375132#M89905</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2017-07-11T21:01:55Z</dc:date>
    </item>
  </channel>
</rss>

